Skip to content

Commit 48dd852

Browse files
authored
[3.13] gh-144551: Update CI to use latest OpenSSL versions (GH-144800)
(cherry picked from commit b933ef9)
1 parent 795f436 commit 48dd852

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,8 @@ jobs:
293293
# Keep 1.1.1w in our list despite it being upstream EOL and otherwise
294294
# unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
295295
# supported by important vendors such as AWS-LC.
296-
openssl_ver: [1.1.1w, 3.0.18, 3.1.7, 3.2.6, 3.3.5]
296+
openssl_ver: [1.1.1w, 3.0.19, 3.3.6, 3.4.4, 3.5.5, 3.6.1]
297+
# See Tools/ssl/make_ssl_data.py for notes on adding a new version
297298
env:
298299
OPENSSL_VER: ${{ matrix.openssl_ver }}
299300
MULTISSL_DIR: ${{ github.workspace }}/multissl

Tools/ssl/multissltests.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,17 @@
4444

4545
OPENSSL_OLD_VERSIONS = [
4646
"1.1.1w",
47+
"3.1.8",
48+
"3.2.6",
4749
]
4850

4951
OPENSSL_RECENT_VERSIONS = [
50-
"3.0.18",
51-
"3.1.7",
52-
"3.2.6",
53-
"3.3.5",
52+
"3.0.19",
53+
"3.3.6",
54+
"3.4.4",
55+
"3.5.5",
56+
"3.6.1",
57+
# See make_ssl_data.py for notes on adding a new version.
5458
]
5559

5660
LIBRESSL_OLD_VERSIONS = [

0 commit comments

Comments
 (0)