Skip to content

Commit 5ddb274

Browse files
[3.12] gh-109991: Update GitHub CI workflows to use OpenSSL 3.0.13. (GH-115055)
Also update multissltests to use 1.1.1w, 3.0.13, 3.1.5, and 3.2.1. (cherry picked from commit 299e16c) Co-authored-by: Ned Deily <[email protected]>
1 parent 51f8c04 commit 5ddb274

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ jobs:
249249
strategy:
250250
fail-fast: false
251251
matrix:
252-
openssl_ver: [1.1.1w, 3.0.11, 3.1.3]
252+
openssl_ver: [1.1.1w, 3.0.13, 3.1.5, 3.2.1]
253253
env:
254254
OPENSSL_VER: ${{ matrix.openssl_ver }}
255255
MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -303,7 +303,7 @@ jobs:
303303
needs: check_source
304304
if: needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_hypothesis == 'true'
305305
env:
306-
OPENSSL_VER: 3.0.11
306+
OPENSSL_VER: 3.0.13
307307
PYTHONSTRICTEXTENSIONBUILD: 1
308308
steps:
309309
- uses: actions/checkout@v4
@@ -414,7 +414,7 @@ jobs:
414414
needs: check_source
415415
if: needs.check_source.outputs.run_tests == 'true'
416416
env:
417-
OPENSSL_VER: 3.0.11
417+
OPENSSL_VER: 3.0.13
418418
PYTHONSTRICTEXTENSIONBUILD: 1
419419
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
420420
steps:

.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
timeout-minutes: 60
1515
runs-on: ubuntu-20.04
1616
env:
17-
OPENSSL_VER: 3.0.11
17+
OPENSSL_VER: 3.0.13
1818
PYTHONSTRICTEXTENSIONBUILD: 1
1919
steps:
2020
- uses: actions/checkout@v4
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Update GitHub CI workflows to use OpenSSL 3.0.13 and multissltests to use
2+
1.1.1w, 3.0.13, 3.1.5, and 3.2.1.

Tools/ssl/multissltests.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@
4747

4848
OPENSSL_RECENT_VERSIONS = [
4949
"1.1.1w",
50-
"3.0.11",
51-
"3.1.3",
50+
"3.0.13",
51+
"3.1.5",
52+
"3.2.1",
5253
]
5354

5455
LIBRESSL_OLD_VERSIONS = [

0 commit comments

Comments
 (0)