summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2022-03-15 20:03:04 (GMT)
committerGitHub <noreply@github.com>2022-03-15 20:03:04 (GMT)
commitaf0a50de4b77dc774fcfdf5468ec320b08bfb53b (patch)
tree6fa06a4bda3b96402a50249e3dc92017f8013be7 /.github/workflows
parent099f75614100e88ed90b68d20a51a8d9c22f81a7 (diff)
downloadcpython-af0a50de4b77dc774fcfdf5468ec320b08bfb53b.zip
cpython-af0a50de4b77dc774fcfdf5468ec320b08bfb53b.tar.gz
cpython-af0a50de4b77dc774fcfdf5468ec320b08bfb53b.tar.bz2
bpo-47024: Update OpenSSL to 1.1.1n (GH-31895)
Co-authored-by: Zachary Ware <zachary.ware@gmail.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 8b1709d..b950c59 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -167,7 +167,7 @@ jobs:
needs: check_source
if: needs.check_source.outputs.run_tests == 'true'
env:
- OPENSSL_VER: 1.1.1m
+ OPENSSL_VER: 1.1.1n
PYTHONSTRICTEXTENSIONBUILD: 1
steps:
- uses: actions/checkout@v2
@@ -226,7 +226,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- openssl_ver: [1.1.1m, 3.0.1]
+ openssl_ver: [1.1.1n, 3.0.2]
env:
OPENSSL_VER: ${{ matrix.openssl_ver }}
MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -273,7 +273,7 @@ jobs:
needs: check_source
if: needs.check_source.outputs.run_tests == 'true'
env:
- OPENSSL_VER: 1.1.1m
+ OPENSSL_VER: 1.1.1n
PYTHONSTRICTEXTENSIONBUILD: 1
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
steps: