Skip to content

Commit 359cff5

Browse files
[3.12] gh-107565: Update multissltests and GitHub CI workflows to use OpenSSL 1.1.1v, 3.0.10, and 3.1.2. (GH-108118)
Co-authored-by: Ned Deily <[email protected]>
1 parent af6e5fa commit 359cff5

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ jobs:
287287
needs: check_source
288288
if: needs.check_source.outputs.run_tests == 'true'
289289
env:
290-
OPENSSL_VER: 1.1.1u
290+
OPENSSL_VER: 1.1.1v
291291
PYTHONSTRICTEXTENSIONBUILD: 1
292292
steps:
293293
- uses: actions/checkout@v3
@@ -356,7 +356,7 @@ jobs:
356356
strategy:
357357
fail-fast: false
358358
matrix:
359-
openssl_ver: [1.1.1u, 3.0.9, 3.1.1]
359+
openssl_ver: [1.1.1v, 3.0.10, 3.1.2]
360360
env:
361361
OPENSSL_VER: ${{ matrix.openssl_ver }}
362362
MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -408,7 +408,7 @@ jobs:
408408
needs: check_source
409409
if: needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_hypothesis == 'true'
410410
env:
411-
OPENSSL_VER: 1.1.1u
411+
OPENSSL_VER: 1.1.1v
412412
PYTHONSTRICTEXTENSIONBUILD: 1
413413
steps:
414414
- uses: actions/checkout@v3
@@ -517,7 +517,7 @@ jobs:
517517
needs: check_source
518518
if: needs.check_source.outputs.run_tests == 'true'
519519
env:
520-
OPENSSL_VER: 1.1.1u
520+
OPENSSL_VER: 1.1.1v
521521
PYTHONSTRICTEXTENSIONBUILD: 1
522522
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
523523
steps:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Update multissltests and GitHub CI workflows to use OpenSSL 1.1.1v, 3.0.10,
2+
and 3.1.2.

Tools/ssl/multissltests.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
]
4747

4848
OPENSSL_RECENT_VERSIONS = [
49-
"1.1.1u",
50-
"3.0.9",
51-
"3.1.1",
49+
"1.1.1v",
50+
"3.0.10",
51+
"3.1.2",
5252
]
5353

5454
LIBRESSL_OLD_VERSIONS = [

0 commit comments

Comments
 (0)