diff options
author | Ćukasz Langa <lukasz@langa.pl> | 2021-08-29 16:27:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-29 16:27:01 (GMT) |
commit | 803c60789b5b6566cb0b71f6b83464e61731d09b (patch) | |
tree | 0e63a1e741363de1a155610555ce327bd9e2811c /.github | |
parent | b93aea4c7e4553950daa5d47c3ef2dc8a9c4edff (diff) | |
download | cpython-803c60789b5b6566cb0b71f6b83464e61731d09b.zip cpython-803c60789b5b6566cb0b71f6b83464e61731d09b.tar.gz cpython-803c60789b5b6566cb0b71f6b83464e61731d09b.tar.bz2 |
[3.8] bpo-45007: Update to OpenSSL 1.1.1l in Windows build and CI (GH-28009) (GH-28041)
(cherry picked from commit d3bdbbf9a4352a24fc2bfc7a63a024b244b61aba)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 79d7efa..29810c4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -143,7 +143,7 @@ jobs: needs: check_source if: needs.check_source.outputs.run_tests == 'true' env: - OPENSSL_VER: 1.1.1k + OPENSSL_VER: 1.1.1l steps: - uses: actions/checkout@v2 - name: Install Dependencies @@ -184,7 +184,7 @@ jobs: strategy: fail-fast: false matrix: - openssl_ver: [1.0.2u, 1.1.0l, 1.1.1k, 3.0.0-alpha14] + openssl_ver: [1.0.2u, 1.1.0l, 1.1.1l, 3.0.0-beta1] env: OPENSSL_VER: ${{ matrix.openssl_ver }} MULTISSL_DIR: ${{ github.workspace }}/multissl |