]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] gh-151159: Update CI to use latest SSL library versions (GH-151201)
authorZachary Ware <zach@python.org>
Tue, 9 Jun 2026 18:04:56 +0000 (13:04 -0500)
committerGitHub <noreply@github.com>
Tue, 9 Jun 2026 18:04:56 +0000 (18:04 +0000)
(cherry picked from commit 7053bbd7fd4967b8782bf0c8f6ad00248f0b0c5b)

.github/workflows/build.yml
.github/workflows/reusable-ubuntu.yml
Tools/ssl/multissltests.py

index 288345965b81e9648b2792264c470c6d897a17ed..2f829c54b81442205371e17e5c765f83d981720f 100644 (file)
@@ -305,11 +305,10 @@ jobs:
           # unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
           # supported by important vendors such as AWS-LC.
           - { name: openssl, version: 1.1.1w }
-          - { name: openssl, version: 3.0.20 }
-          - { name: openssl, version: 3.3.7 }
-          - { name: openssl, version: 3.4.5 }
-          - { name: openssl, version: 3.5.6 }
-          - { name: openssl, version: 3.6.2 }
+          - { name: openssl, version: 3.0.21 }
+          - { name: openssl, version: 3.4.6 }
+          - { name: openssl, version: 3.5.7 }
+          - { name: openssl, version: 3.6.3 }
     env:
       SSLLIB_VER: ${{ matrix.ssllib.version }}
       MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -423,7 +422,7 @@ jobs:
     needs: build-context
     if: needs.build-context.outputs.run-ubuntu == 'true'
     env:
-      OPENSSL_VER: 3.5.6
+      OPENSSL_VER: 3.5.7
       PYTHONSTRICTEXTENSIONBUILD: 1
     steps:
     - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -531,7 +530,7 @@ jobs:
       matrix:
         os: [ubuntu-24.04]
     env:
-      OPENSSL_VER: 3.5.6
+      OPENSSL_VER: 3.5.7
       PYTHONSTRICTEXTENSIONBUILD: 1
       ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
     steps:
index c5d649ca79afbde035ef25767191b3627bc8c80f..63527bd02b94f6f84c1aa41c35b736754776ef47 100644 (file)
@@ -30,7 +30,7 @@ jobs:
     runs-on: ${{ inputs.os }}
     timeout-minutes: 60
     env:
-      OPENSSL_VER: 3.5.6
+      OPENSSL_VER: 3.5.7
       PYTHONSTRICTEXTENSIONBUILD: 1
       TERM: linux
     steps:
index 85a8cd38f41bfa961ecc02b383d4bd0778687969..68bd6e0860deb6f2b74e9352a5a88fdabacc89ff 100755 (executable)
@@ -46,14 +46,14 @@ OPENSSL_OLD_VERSIONS = [
     "1.1.1w",
     "3.1.8",
     "3.2.6",
+    "3.3.7",
 ]
 
 OPENSSL_RECENT_VERSIONS = [
-    "3.0.20",
-    "3.3.7",
-    "3.4.5",
-    "3.5.6",
-    "3.6.2",
+    "3.0.21",
+    "3.4.6",
+    "3.5.7",
+    "3.6.3",
     # See make_ssl_data.py for notes on adding a new version.
 ]