Skip to content

Commit f16058d

Browse files
committed
Add ubuntu-22.04 to github action
1 parent e456547 commit f16058d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/install-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
NC: '\033[0m'
1212
jobs:
1313
main:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repository
1717
uses: actions/checkout@v4
@@ -24,7 +24,7 @@ jobs:
2424
mkdir -p ~/.ssh
2525
chmod 700 ~/.ssh
2626
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
27-
chmod 600 ~/.ssh/id_rsa
27+
chmod 600 ~/.ssh/id_rsa
2828
# Update known hosts within the container (recommended)
2929
echo -e "${GREEN}Update known hosts${NC}"
3030
ssh-keyscan -H github.com >> ~/.ssh/known_hosts
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ${{ matrix.os }}
5353
strategy:
5454
matrix:
55-
os: [ubuntu-20.04, ubuntu-22.04]
55+
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
5656
env:
5757
DEV_WORKSPACE: "/workspace"
5858
steps:

0 commit comments

Comments
 (0)