Skip to content

Commit ea7d943

Browse files
authored
[3.14] gh-151159: Update CI to use latest SSL library versions (GH-151201)
(cherry picked from commit 7053bbd)
1 parent 6e160ad commit ea7d943

3 files changed

Lines changed: 12 additions & 13 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -305,11 +305,10 @@ jobs:
305305
# unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
306306
# supported by important vendors such as AWS-LC.
307307
- { name: openssl, version: 1.1.1w }
308-
- { name: openssl, version: 3.0.20 }
309-
- { name: openssl, version: 3.3.7 }
310-
- { name: openssl, version: 3.4.5 }
311-
- { name: openssl, version: 3.5.6 }
312-
- { name: openssl, version: 3.6.2 }
308+
- { name: openssl, version: 3.0.21 }
309+
- { name: openssl, version: 3.4.6 }
310+
- { name: openssl, version: 3.5.7 }
311+
- { name: openssl, version: 3.6.3 }
313312
env:
314313
SSLLIB_VER: ${{ matrix.ssllib.version }}
315314
MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -423,7 +422,7 @@ jobs:
423422
needs: build-context
424423
if: needs.build-context.outputs.run-ubuntu == 'true'
425424
env:
426-
OPENSSL_VER: 3.5.6
425+
OPENSSL_VER: 3.5.7
427426
PYTHONSTRICTEXTENSIONBUILD: 1
428427
steps:
429428
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -531,7 +530,7 @@ jobs:
531530
matrix:
532531
os: [ubuntu-24.04]
533532
env:
534-
OPENSSL_VER: 3.5.6
533+
OPENSSL_VER: 3.5.7
535534
PYTHONSTRICTEXTENSIONBUILD: 1
536535
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
537536
steps:

.github/workflows/reusable-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ${{ inputs.os }}
3131
timeout-minutes: 60
3232
env:
33-
OPENSSL_VER: 3.5.6
33+
OPENSSL_VER: 3.5.7
3434
PYTHONSTRICTEXTENSIONBUILD: 1
3535
TERM: linux
3636
steps:

Tools/ssl/multissltests.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@
4646
"1.1.1w",
4747
"3.1.8",
4848
"3.2.6",
49+
"3.3.7",
4950
]
5051

5152
OPENSSL_RECENT_VERSIONS = [
52-
"3.0.20",
53-
"3.3.7",
54-
"3.4.5",
55-
"3.5.6",
56-
"3.6.2",
53+
"3.0.21",
54+
"3.4.6",
55+
"3.5.7",
56+
"3.6.3",
5757
# See make_ssl_data.py for notes on adding a new version.
5858
]
5959

0 commit comments

Comments
 (0)