diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-03 01:05:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-03 01:05:10 (GMT) |
commit | 1767a0490f80c7b90d81051db24ef2b82cd9434f (patch) | |
tree | bf76a2f99a716d660a846edd6c5f96ceedadc3cc /.github/workflows | |
parent | b1ffb8b72307a556442d09b427c3b29badb9878c (diff) | |
download | cpython-1767a0490f80c7b90d81051db24ef2b82cd9434f.zip cpython-1767a0490f80c7b90d81051db24ef2b82cd9434f.tar.gz cpython-1767a0490f80c7b90d81051db24ef2b82cd9434f.tar.bz2 |
bpo-40146: Update OpenSSL to 1.1.1f in Azure Pipelines (GH-19320)
Update also OpenSSL version in Ubuntu and Coverage jobs.
Diffstat (limited to '.github/workflows')
-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 6774ae4..50d1561 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -65,7 +65,7 @@ jobs: name: 'Ubuntu' runs-on: ubuntu-latest env: - OPENSSL_VER: 1.1.1d + OPENSSL_VER: 1.1.1f steps: - uses: actions/checkout@v1 - name: Install Dependencies diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index bf166ab..75bdf83 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.1d + OPENSSL_VER: 1.1.1f steps: - uses: actions/checkout@v1 - name: Install Dependencies |