Skip to content

Commit 984ff83

Browse files
committed
change OS image in github workflow to ubuntu-24.04
1 parent 46f5a4f commit 984ff83

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
name: 'Check if generated files are up to date'
4545
# Don't use ubuntu-latest but a specific version to make the job
4646
# reproducible: to get the same tools versions (autoconf, aclocal, ...)
47-
runs-on: ubuntu-22.04
47+
runs-on: ubuntu-24.04
4848
timeout-minutes: 60
4949
needs: check_source
5050
if: needs.check_source.outputs.run_tests == 'true'
@@ -195,7 +195,7 @@ jobs:
195195

196196
build_ubuntu_ssltests:
197197
name: 'Ubuntu SSL tests with OpenSSL'
198-
runs-on: ubuntu-22.04
198+
runs-on: ubuntu-24.04
199199
timeout-minutes: 60
200200
needs: check_source
201201
if: needs.check_source.outputs.run_tests == 'true'
@@ -261,7 +261,7 @@ jobs:
261261

262262
test_hypothesis:
263263
name: "Hypothesis tests on Ubuntu"
264-
runs-on: ubuntu-22.04
264+
runs-on: ubuntu-24.04
265265
timeout-minutes: 60
266266
needs: check_source
267267
if: needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_hypothesis == 'true'
@@ -375,7 +375,7 @@ jobs:
375375

376376
build_asan:
377377
name: 'Address sanitizer'
378-
runs-on: ubuntu-22.04
378+
runs-on: ubuntu-24.04
379379
timeout-minutes: 60
380380
needs: check_source
381381
if: needs.check_source.outputs.run_tests == 'true'

.github/workflows/reusable-tsan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
jobs:
2020
build_tsan_reusable:
2121
name: 'Thread sanitizer'
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323
timeout-minutes: 60
2424
steps:
2525
- uses: actions/checkout@v4

.github/workflows/reusable-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build_ubuntu_reusable:
1515
name: 'build and test'
1616
timeout-minutes: 60
17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-24.04
1818
env:
1919
FORCE_COLOR: 1
2020
OPENSSL_VER: 3.0.13

.github/workflows/reusable-wasi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build_wasi_reusable:
1010
name: 'build and test'
1111
timeout-minutes: 60
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
env:
1414
WASMTIME_VERSION: 22.0.0
1515
WASI_SDK_VERSION: 22

Tools/build/regen-configure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e -x
55
# The check_generated_files job of .github/workflows/build.yml must kept in
66
# sync with this script. Use the same container image than the job so the job
77
# doesn't need to run autoreconf in a container.
8-
IMAGE="ubuntu:22.04"
8+
IMAGE="ubuntu:24.04"
99
DEPENDENCIES="autotools-dev autoconf autoconf-archive pkg-config"
1010
AUTORECONF="autoreconf -ivf -Werror"
1111

0 commit comments

Comments
 (0)