Skip to content

Commit

Permalink
Set the GitHub runner image to Ubuntu 22.04 explicitly.
Browse files Browse the repository at this point in the history
ubuntu-latest now uses Ubuntu 24.04, while it used to use 22.04.
To unblock Github CI in the short term, we set it to ubuntu-22.04.

Signed-off-by: Ashok Pariya <[email protected]>
  • Loading branch information
ashokpariya0 committed Dec 16, 2024
1 parent 925bee6 commit f457a4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-linters-unit-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:

- uses: actions/checkout@v3
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Test
run: ENVTEST_VERSION="release-0.17" make test
e2e:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:

- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-img.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
push-amd64:
name: Image push/amd64
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

permissions:
contents: write
Expand Down

0 comments on commit f457a4d

Please sign in to comment.