Skip to content

Commit 319e695

Browse files
authored
[3.11] gh-109991: Update GitHub CI workflows to use OpenSSL 3.0.13. (GH-115057)
Also update multissltests to use 1.1.1w, 3.0.13, 3.1.5, and 3.2.1.
1 parent 753d0d5 commit 319e695

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ jobs:
232232
strategy:
233233
fail-fast: false
234234
matrix:
235-
openssl_ver: [1.1.1w, 3.0.11, 3.1.3]
235+
openssl_ver: [1.1.1w, 3.0.13, 3.1.5, 3.2.1]
236236
env:
237237
OPENSSL_VER: ${{ matrix.openssl_ver }}
238238
MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -286,7 +286,7 @@ jobs:
286286
needs: check_source
287287
if: needs.check_source.outputs.run_tests == 'true'
288288
env:
289-
OPENSSL_VER: 3.0.11
289+
OPENSSL_VER: 3.0.13
290290
PYTHONSTRICTEXTENSIONBUILD: 1
291291
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
292292
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
@@ -48,8 +48,9 @@
4848

4949
OPENSSL_RECENT_VERSIONS = [
5050
"1.1.1w",
51-
"3.0.11",
52-
"3.1.3",
51+
"3.0.13",
52+
"3.1.5",
53+
"3.2.1",
5354
]
5455

5556
LIBRESSL_OLD_VERSIONS = [

0 commit comments

Comments
 (0)