Skip to content

Commit 4b86443

Browse files
authored
[3.14] gh-156369: Update CI to use latest SSL library versions (GH-156381) (#156390)
(cherry picked from commit 369f04a)
1 parent b885859 commit 4b86443

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -319,10 +319,10 @@ jobs:
319319
# unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
320320
# supported by important vendors such as AWS-LC.
321321
- { name: openssl, version: 1.1.1w }
322-
- { name: openssl, version: 3.0.21 }
323-
- { name: openssl, version: 3.4.6 }
324-
- { name: openssl, version: 3.5.7 }
325-
- { name: openssl, version: 3.6.3 }
322+
- { name: openssl, version: 3.0.22 }
323+
- { name: openssl, version: 3.4.7 }
324+
- { name: openssl, version: 3.5.8 }
325+
- { name: openssl, version: 3.6.4 }
326326
env:
327327
SSLLIB_VER: ${{ matrix.ssllib.version }}
328328
MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -427,7 +427,7 @@ jobs:
427427
needs: build-context
428428
if: needs.build-context.outputs.run-ubuntu == 'true'
429429
env:
430-
OPENSSL_VER: 3.5.7
430+
OPENSSL_VER: 3.5.8
431431
PYTHONSTRICTEXTENSIONBUILD: 1
432432
steps:
433433
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -535,7 +535,7 @@ jobs:
535535
matrix:
536536
os: [ubuntu-26.04]
537537
env:
538-
OPENSSL_VER: 3.5.7
538+
OPENSSL_VER: 3.5.8
539539
PYTHONSTRICTEXTENSIONBUILD: 1
540540
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
541541
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
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ${{ inputs.os }}
3131
timeout-minutes: 60
3232
env:
33-
OPENSSL_VER: 3.5.7
33+
OPENSSL_VER: 3.5.8
3434
PYTHONSTRICTEXTENSIONBUILD: 1
3535
TERM: linux
3636
steps:

Tools/ssl/multissltests.py

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

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

0 commit comments

Comments
 (0)