Skip to content

Commit

Permalink
ci: run all tasks on ubuntu-24.04
Browse files Browse the repository at this point in the history
Previously we inconsitently used ubuntu-latest and ubuntu-20.04. We now
pin that (consistently) to 24.04 to avoid floating refs (and the
corresponding GitHub warning).

Signed-off-by: Felix Moessbauer <[email protected]>
  • Loading branch information
fmoessbauer committed Jan 7, 2025
1 parent 1d9a3e6 commit 6332b77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
deploy_containers:
name: Build and deploy container images
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
id-token: write
packages: write
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
perform_tests:
name: Run tests on kas code
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
build_containers:
name: Build, test and deploy container images
needs: perform_tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
id-token: write
packages: write
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:

cleanup_ghcr_containers:
name: cleanup untagged ${{ matrix.image-name }} containers
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: build_containers
permissions:
packages: write
Expand Down

0 comments on commit 6332b77

Please sign in to comment.