Skip to content

Commit

Permalink
github: pin docker workflows to ubuntu-24.04
Browse files Browse the repository at this point in the history
Otherwise ubuntu-latest can sometimes still install ubuntu 22.04 which
becomes problematic when combined with
eabec52 ("github: install setuptools_scm via apt") due to differing
package versions.

Signed-off-by: Bastian Krause <[email protected]>
  • Loading branch information
Bastian-Krause committed Oct 17, 2024
1 parent eabec52 commit 92b0ec5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:

jobs:
docker:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install system dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-unit-tests-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
docker:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 92b0ec5

Please sign in to comment.