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

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

index 36d681a945bdc67ed4cc92dca553de7f41bf9218..129dcc03dc2d05a01e453a1169c45b764051320d 100644 (file)
@@ -291,7 +291,7 @@ jobs:
         # Keep 1.1.1w in our list despite it being upstream EOL and otherwise
         # unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
         # supported by important vendors such as AWS-LC.
-        openssl_ver: [1.1.1w, 3.0.20, 3.3.7, 3.4.5, 3.5.6, 3.6.2]
+        openssl_ver: [1.1.1w, 3.0.21, 3.4.6, 3.5.7, 3.6.3]
         # See Tools/ssl/make_ssl_data.py for notes on adding a new version
     env:
       OPENSSL_VER: ${{ matrix.openssl_ver }}
@@ -366,7 +366,7 @@ jobs:
     needs: build-context
     if: needs.build-context.outputs.run-ubuntu == 'true'
     env:
-      OPENSSL_VER: 3.0.20
+      OPENSSL_VER: 3.0.21
       PYTHONSTRICTEXTENSIONBUILD: 1
     steps:
     - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -473,7 +473,7 @@ jobs:
       matrix:
         os: [ubuntu-24.04]
     env:
-      OPENSSL_VER: 3.0.20
+      OPENSSL_VER: 3.0.21
       PYTHONSTRICTEXTENSIONBUILD: 1
       ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
     steps:
index 1c37730a9d05a3cb09211d12c2322b7400f3b7db..07c7c586c6931bfe27b5be9807ce9d2772040404 100644 (file)
@@ -25,7 +25,7 @@ jobs:
       matrix:
         os: [ubuntu-24.04, ubuntu-24.04-arm]
     env:
-      OPENSSL_VER: 3.0.20
+      OPENSSL_VER: 3.0.21
       PYTHONSTRICTEXTENSIONBUILD: 1
       TERM: linux
     steps:
index e0e61ff969ea8a26526dec0838c7a451be99ec65..8c6c2be5873836476814c03fc0217b9bb963422f 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.
 ]