Skip to content

Commit 957e846

Browse files
[3.15] gh-156369: Update CI to use latest SSL library versions (GH-156381) (#156389)
gh-156369: Update CI to use latest SSL library versions (GH-156381) (cherry picked from commit 369f04a) Co-authored-by: Zachary Ware <zach@python.org>
1 parent cb45dee commit 957e846

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -332,13 +332,13 @@ jobs:
332332
# unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
333333
# supported by important vendors such as AWS-LC.
334334
- { name: openssl, version: 1.1.1w }
335-
- { name: openssl, version: 3.0.21 }
336-
- { name: openssl, version: 3.4.6 }
337-
- { name: openssl, version: 3.5.7 }
338-
- { name: openssl, version: 3.6.3 }
339-
- { name: openssl, version: 4.0.1 }
335+
- { name: openssl, version: 3.0.22 }
336+
- { name: openssl, version: 3.4.7 }
337+
- { name: openssl, version: 3.5.8 }
338+
- { name: openssl, version: 3.6.4 }
339+
- { name: openssl, version: 4.0.2 }
340340
## AWS-LC
341-
- { name: aws-lc, version: 5.0.0 }
341+
- { name: aws-lc, version: 5.5.0 }
342342
env:
343343
SSLLIB_VER: ${{ matrix.ssllib.version }}
344344
MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -443,7 +443,7 @@ jobs:
443443
needs: build-context
444444
if: needs.build-context.outputs.run-ubuntu == 'true'
445445
env:
446-
OPENSSL_VER: 3.5.7
446+
OPENSSL_VER: 3.5.8
447447
PYTHONSTRICTEXTENSIONBUILD: 1
448448
steps:
449449
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -551,7 +551,7 @@ jobs:
551551
matrix:
552552
os: [ubuntu-26.04]
553553
env:
554-
OPENSSL_VER: 3.5.7
554+
OPENSSL_VER: 3.5.8
555555
PYTHONSTRICTEXTENSIONBUILD: 1
556556
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
557557
steps:

.github/workflows/reusable-san.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717

1818
env:
1919
FORCE_COLOR: 1
20-
OPENSSL_VER: 3.5.7
20+
OPENSSL_VER: 3.5.8
2121

2222
jobs:
2323
build-san-reusable:

.github/workflows/reusable-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ${{ inputs.os }}
3636
timeout-minutes: 60
3737
env:
38-
OPENSSL_VER: 3.5.7
38+
OPENSSL_VER: 3.5.8
3939
PYTHONSTRICTEXTENSIONBUILD: 1
4040
TERM: linux
4141
steps:

Tools/ssl/multissltests.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@
5050
]
5151

5252
OPENSSL_RECENT_VERSIONS = [
53-
"3.0.21",
54-
"3.4.6",
55-
"3.5.7",
56-
"3.6.3",
57-
"4.0.1",
53+
"3.0.22",
54+
"3.4.7",
55+
"3.5.8",
56+
"3.6.4",
57+
"4.0.2",
5858
# See make_ssl_data.py for notes on adding a new version.
5959
]
6060

@@ -65,7 +65,7 @@
6565
]
6666

6767
AWSLC_RECENT_VERSIONS = [
68-
"5.0.0",
68+
"5.5.0",
6969
]
7070

7171
# store files in ../multissl

0 commit comments

Comments
 (0)