diff options
author | Ned Deily <nad@python.org> | 2022-03-15 20:53:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 20:53:48 (GMT) |
commit | e8b72fc7f3937b6b86354110917da161ca36cff7 (patch) | |
tree | 315bba01c67fac3dd78fd4024adefbfd5eae7764 /.github | |
parent | 7a315d8a0d4df01f96d82286739b86920ccebc05 (diff) | |
download | cpython-e8b72fc7f3937b6b86354110917da161ca36cff7.zip cpython-e8b72fc7f3937b6b86354110917da161ca36cff7.tar.gz cpython-e8b72fc7f3937b6b86354110917da161ca36cff7.tar.bz2 |
[3.8] bpo-47024: Update Windows builds and macOS installer build to use OpenSSL 1.1.1n. (GH-31912)
* bpo-47024: Update Windows builds and macOS installer build to use OpenSSL 1.1.1n.
* Revert inadvertent sqlite downgrade
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 88aa37d..5c8f6f2 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.1l + OPENSSL_VER: 1.1.1n steps: - uses: actions/checkout@v2 - name: Install Dependencies diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 5ec2e52..762cdb5 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -23,7 +23,7 @@ jobs: name: 'Ubuntu (Coverage)' runs-on: ubuntu-latest env: - OPENSSL_VER: 1.1.1k + OPENSSL_VER: 1.1.1n steps: - uses: actions/checkout@v2 - name: Install Dependencies |