diff options
author | Gregory P. Smith <greg@krypto.org> | 2022-11-11 09:33:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 09:33:55 (GMT) |
commit | e00d730efe43e10393a37cfedb018f04624b3c5e (patch) | |
tree | 7ea77db1c2367b528abe4f879c2dcfdf5cd45423 | |
parent | 67b4d2772c5124b908f8ed9b13166a79bbeb88d2 (diff) | |
download | cpython-e00d730efe43e10393a37cfedb018f04624b3c5e.zip cpython-e00d730efe43e10393a37cfedb018f04624b3c5e.tar.gz cpython-e00d730efe43e10393a37cfedb018f04624b3c5e.tar.bz2 |
Update github CI to use OpenSSL 1.1.1s and 3.0.7. (#99364)
-rw-r--r-- | .github/workflows/build.yml | 6 | ||||
-rwxr-xr-x | Tools/ssl/multissltests.py | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0544c0..a1bdfa0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -176,7 +176,7 @@ jobs: needs: check_source if: needs.check_source.outputs.run_tests == 'true' env: - OPENSSL_VER: 1.1.1q + OPENSSL_VER: 1.1.1s PYTHONSTRICTEXTENSIONBUILD: 1 steps: - uses: actions/checkout@v3 @@ -235,7 +235,7 @@ jobs: strategy: fail-fast: false matrix: - openssl_ver: [1.1.1q, 3.0.5] + openssl_ver: [1.1.1s, 3.0.7] env: OPENSSL_VER: ${{ matrix.openssl_ver }} MULTISSL_DIR: ${{ github.workspace }}/multissl @@ -282,7 +282,7 @@ jobs: needs: check_source if: needs.check_source.outputs.run_tests == 'true' env: - OPENSSL_VER: 1.1.1q + OPENSSL_VER: 1.1.1s PYTHONSTRICTEXTENSIONBUILD: 1 ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0 steps: diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index d64b4f6..30d6696 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -46,8 +46,8 @@ OPENSSL_OLD_VERSIONS = [ ] OPENSSL_RECENT_VERSIONS = [ - "1.1.1q", - "3.0.5" + "1.1.1s", + "3.0.7" ] LIBRESSL_OLD_VERSIONS = [ |