Skip to content

Commit 299e16c

Browse files
authored
gh-109991: Update GitHub CI workflows to use OpenSSL 3.0.13. (#115050)
Also update multissltests to use 1.1.1w, 3.0.13, 3.1.5, and 3.2.1.
1 parent 638e811 commit 299e16c

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
@@ -250,7 +250,7 @@ jobs:
250250
strategy:
251251
fail-fast: false
252252
matrix:
253-
openssl_ver: [1.1.1w, 3.0.11, 3.1.3]
253+
openssl_ver: [1.1.1w, 3.0.13, 3.1.5, 3.2.1]
254254
env:
255255
OPENSSL_VER: ${{ matrix.openssl_ver }}
256256
MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -304,7 +304,7 @@ jobs:
304304
needs: check_source
305305
if: needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_hypothesis == 'true'
306306
env:
307-
OPENSSL_VER: 3.0.11
307+
OPENSSL_VER: 3.0.13
308308
PYTHONSTRICTEXTENSIONBUILD: 1
309309
steps:
310310
- uses: actions/checkout@v4
@@ -415,7 +415,7 @@ jobs:
415415
needs: check_source
416416
if: needs.check_source.outputs.run_tests == 'true'
417417
env:
418-
OPENSSL_VER: 3.0.11
418+
OPENSSL_VER: 3.0.13
419419
PYTHONSTRICTEXTENSIONBUILD: 1
420420
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
421421
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)