diff options
author | Christian Heimes <christian@python.org> | 2021-03-30 00:00:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 00:00:34 (GMT) |
commit | a54fc683f237d8f0b6e999a63aa9b8c0a45b7fef (patch) | |
tree | 35a2c40c9438466502ee413b9775b392d33b28ad /.github | |
parent | 92a02c1f7e2dcdc62913a4236589e7e5d96172b9 (diff) | |
download | cpython-a54fc683f237d8f0b6e999a63aa9b8c0a45b7fef.zip cpython-a54fc683f237d8f0b6e999a63aa9b8c0a45b7fef.tar.gz cpython-a54fc683f237d8f0b6e999a63aa9b8c0a45b7fef.tar.bz2 |
bpo-43631: Update to OpenSSL 1.1.1k (GH-25024)
- [x] Build OpenSSL 1.1.1k for macOS
- [x] Build OpenSSL 1.1.1k for Windows
I have also updated multissl tester and various CI configurations to use latest OpenSSL. The versions were all over the place.
Signed-off-by: Christian Heimes <christian@python.org>
Automerge-Triggered-By: GH:tiran
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 2 | ||||
-rw-r--r-- | .github/workflows/coverage.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d6be2b6..39c349b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -131,7 +131,7 @@ jobs: needs: check_source if: needs.check_source.outputs.run_tests == 'true' env: - OPENSSL_VER: 1.1.1f + OPENSSL_VER: 1.1.1k steps: - uses: actions/checkout@v2 - name: Register gcc problem matcher diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 788d6ce..d8d932a 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -25,7 +25,7 @@ jobs: name: 'Ubuntu (Coverage)' runs-on: ubuntu-latest env: - OPENSSL_VER: 1.1.1f + OPENSSL_VER: 1.1.1k steps: - uses: actions/checkout@v2 - name: Install Dependencies |