Skip to content

Commit 92b0ec5

Browse files
github: pin docker workflows to ubuntu-24.04
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 <bst@pengutronix.de>
1 parent eabec52 commit 92b0ec5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616

1717
jobs:
1818
docker:
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-24.04
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Install system dependencies

.github/workflows/reusable-unit-tests-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
docker:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- uses: actions/checkout@v4
1515
with:

0 commit comments

Comments
 (0)