5353 name : ' Check if Autoconf files are up to date'
5454 # Don't use ubuntu-latest but a specific version to make the job
5555 # reproducible: to get the same tools versions (autoconf, aclocal, ...)
56- runs-on : ubuntu-24 .04
56+ runs-on : ubuntu-26 .04
5757 container :
5858 image : ghcr.io/python/autoconf:2025.01.02.12581854023
5959 timeout-minutes : 60
6464 run : |
6565 apt update && apt install git -yq
6666 git config --global --add safe.directory "$GITHUB_WORKSPACE"
67- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
67+ - uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 .0.0
6868 with :
6969 fetch-depth : 1
7070 persist-credentials : false
@@ -96,12 +96,12 @@ jobs:
9696 name : ' Check if generated files are up to date'
9797 # Don't use ubuntu-latest but a specific version to make the job
9898 # reproducible: to get the same tools versions (autoconf, aclocal, ...)
99- runs-on : ubuntu-24 .04
99+ runs-on : ubuntu-26 .04
100100 timeout-minutes : 60
101101 needs : build-context
102102 if : needs.build-context.outputs.run-tests == 'true'
103103 steps :
104- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
104+ - uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 .0.0
105105 with :
106106 persist-credentials : false
107107 - uses : actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
@@ -239,18 +239,18 @@ jobs:
239239 - false
240240 - true
241241 os :
242- - ubuntu-24 .04
243- - ubuntu-24 .04-arm
242+ - ubuntu-26 .04
243+ - ubuntu-26 .04-arm
244244 exclude :
245245 # Do not test BOLT with free-threading, to conserve resources
246246 - bolt : true
247247 free-threading : true
248248 # BOLT currently crashes during instrumentation on aarch64
249- - os : ubuntu-24 .04-arm
249+ - os : ubuntu-26 .04-arm
250250 bolt : true
251251 include :
252252 # Enable CPU-intensive tests on ARM (default build only)
253- - os : ubuntu-24 .04-arm
253+ - os : ubuntu-26 .04-arm
254254 bolt : false
255255 free-threading : false
256256 test-opts : ' -u cpu'
@@ -270,7 +270,7 @@ jobs:
270270 strategy :
271271 fail-fast : false
272272 matrix :
273- os : [ubuntu-24 .04]
273+ os : [ubuntu-26 .04]
274274 ssllib :
275275 # See Tools/ssl/make_ssl_data.py for notes on adding a new version
276276 # # OpenSSL
@@ -291,7 +291,7 @@ jobs:
291291 SSLLIB_DIR : ${{ github.workspace }}/multissl/${{ matrix.ssllib.name }}/${{ matrix.ssllib.version }}
292292 LD_LIBRARY_PATH : ${{ github.workspace }}/multissl/${{ matrix.ssllib.name }}/${{ matrix.ssllib.version }}/lib
293293 steps :
294- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
294+ - uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 .0.0
295295 with :
296296 persist-credentials : false
297297 - name : Runner image version
@@ -346,38 +346,29 @@ jobs:
346346 - arch : aarch64
347347 runs-on : macos-26
348348 - arch : x86_64
349- runs-on : ubuntu-24 .04
349+ runs-on : ubuntu-26 .04
350350
351351 runs-on : ${{ matrix.runs-on }}
352352 steps :
353- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
353+ - uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 .0.0
354354 with :
355355 persist-credentials : false
356356 - name : Build and test
357- run : python3 Platforms/Android ci --fast-ci ${{ matrix.arch }}-linux-android
357+ run : JAVA_HOME="${JAVA_HOME_21_X64:-$JAVA_HOME_21_arm64}" python3 Platforms/Android ci --fast-ci ${{ matrix.arch }}-linux-android
358358
359359 build-ios :
360360 name : iOS
361361 needs : build-context
362362 if : needs.build-context.outputs.run-ios == 'true'
363363 timeout-minutes : 60
364- runs-on : macos-14
364+ runs-on : macos-26
365365 steps :
366- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
366+ - uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 .0.0
367367 with :
368368 persist-credentials : false
369369
370- # GitHub recommends explicitly selecting the desired Xcode version:
371- # https://github.com/actions/runner-images/issues/12541#issuecomment-3083850140
372- # This became a necessity as a result of
373- # https://github.com/actions/runner-images/issues/12541 and
374- # https://github.com/actions/runner-images/issues/12751.
375- - name : Select Xcode version
376- run : |
377- sudo xcode-select --switch /Applications/Xcode_15.4.app
378-
379370 - name : Build and test
380- run : python3 Platforms/Apple ci iOS --fast-ci --simulator 'iPhone SE (3rd generation),OS=17.5'
371+ run : python3 Platforms/Apple ci iOS --fast-ci
381372
382373 build-emscripten :
383374 name : ' Emscripten'
@@ -401,15 +392,15 @@ jobs:
401392
402393 test-hypothesis :
403394 name : " Hypothesis tests on Ubuntu"
404- runs-on : ubuntu-24 .04
395+ runs-on : ubuntu-26 .04
405396 timeout-minutes : 60
406397 needs : build-context
407398 if : needs.build-context.outputs.run-ubuntu == 'true'
408399 env :
409400 OPENSSL_VER : 3.5.7
410401 PYTHONSTRICTEXTENSIONBUILD : 1
411402 steps :
412- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
403+ - uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 .0.0
413404 with :
414405 persist-credentials : false
415406 - name : Register gcc problem matcher
@@ -512,13 +503,13 @@ jobs:
512503 strategy :
513504 fail-fast : false
514505 matrix :
515- os : [ubuntu-24 .04]
506+ os : [ubuntu-26 .04]
516507 env :
517508 OPENSSL_VER : 3.5.7
518509 PYTHONSTRICTEXTENSIONBUILD : 1
519510 ASAN_OPTIONS : detect_leaks=0:allocator_may_return_null=1:handle_segv=0
520511 steps :
521- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
512+ - uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 .0.0
522513 with :
523514 persist-credentials : false
524515 - name : Runner image version
@@ -527,10 +518,6 @@ jobs:
527518 run : echo "::add-matcher::.github/problem-matchers/gcc.json"
528519 - name : Install dependencies
529520 run : sudo ./.github/workflows/posix-deps-apt.sh
530- - name : Set up GCC-10 for ASAN
531- uses : egor-tensin/setup-gcc@a2861a8b8538f49cf2850980acccf6b05a1b2ae4 # v2.0
532- with :
533- version : 10
534521 - name : Configure OpenSSL env vars
535522 run : |
536523 echo "MULTISSL_DIR=${GITHUB_WORKSPACE}/multissl" >> "$GITHUB_ENV"
@@ -580,12 +567,12 @@ jobs:
580567
581568 cross-build-linux :
582569 name : Cross build Linux
583- runs-on : ubuntu-latest
570+ runs-on : ubuntu-26.04
584571 timeout-minutes : 60
585572 needs : build-context
586573 if : needs.build-context.outputs.run-ubuntu == 'true'
587574 steps :
588- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
575+ - uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 .0.0
589576 with :
590577 persist-credentials : false
591578 - name : Runner image version
0 commit comments