Skip to content

Commit 2ddc8b1

Browse files
Merge pull request #1510 from Bastian-Krause/bst/ubuntu-24.04
github: bump ubuntu runner images to 24.04
2 parents 28fee23 + b762cc9 commit 2ddc8b1

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@ 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
2323
run: |
24-
sudo apt install -yq python3-pip
25-
pip install --upgrade setuptools
26-
pip install setuptools_scm
24+
sudo apt install -yq python3-pip python3-setuptools-scm
2725
- name: Set up QEMU
2826
uses: docker/setup-qemu-action@v3
2927
with:

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,14 @@ 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:
1616
ref: ${{ inputs.branch }}
1717
- name: Install system dependencies
1818
run: |
19-
sudo apt install -yq python3-pip
20-
pip install --upgrade setuptools
21-
pip install setuptools_scm
19+
sudo apt install -yq python3-pip python3-setuptools-scm
2220
- name: Build docker images
2321
run: |
2422
./dockerfiles/build.sh

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

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

1313
jobs:
1414
build:
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
continue-on-error: false
1717
steps:
1818
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)