Skip to content

Commit ed25f09

Browse files
authored
gh-107565: Update multissltests and GitHub CI workflows to use OpenSSL 1.1.1v, 3.0.10, and 3.1.2. (GH-107896)
1 parent dd4442c commit ed25f09

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ jobs:
244244
needs: check_source
245245
if: needs.check_source.outputs.run_tests == 'true'
246246
env:
247-
OPENSSL_VER: 1.1.1u
247+
OPENSSL_VER: 1.1.1v
248248
PYTHONSTRICTEXTENSIONBUILD: 1
249249
steps:
250250
- uses: actions/checkout@v3
@@ -313,7 +313,7 @@ jobs:
313313
strategy:
314314
fail-fast: false
315315
matrix:
316-
openssl_ver: [1.1.1u, 3.0.9, 3.1.1]
316+
openssl_ver: [1.1.1v, 3.0.10, 3.1.2]
317317
env:
318318
OPENSSL_VER: ${{ matrix.openssl_ver }}
319319
MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -365,7 +365,7 @@ jobs:
365365
needs: check_source
366366
if: needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_hypothesis == 'true'
367367
env:
368-
OPENSSL_VER: 1.1.1u
368+
OPENSSL_VER: 1.1.1v
369369
PYTHONSTRICTEXTENSIONBUILD: 1
370370
steps:
371371
- uses: actions/checkout@v3
@@ -474,7 +474,7 @@ jobs:
474474
needs: check_source
475475
if: needs.check_source.outputs.run_tests == 'true'
476476
env:
477-
OPENSSL_VER: 1.1.1u
477+
OPENSSL_VER: 1.1.1v
478478
PYTHONSTRICTEXTENSIONBUILD: 1
479479
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
480480
steps:
Lines changed: 2 additions & 0 deletions
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

Lines changed: 3 additions & 3 deletions
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)