diff options
author | Christian Heimes <christian@python.org> | 2021-03-18 22:06:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 22:06:50 (GMT) |
commit | f6c6b5821bff815bdc810de53992fd1fbdb2edd4 (patch) | |
tree | ef7405eb4e1ca447851b8b13d8d67b9a8d37c088 /.github | |
parent | 08ff4369afca84587b1c82034af4e9f64caddbf2 (diff) | |
download | cpython-f6c6b5821bff815bdc810de53992fd1fbdb2edd4.zip cpython-f6c6b5821bff815bdc810de53992fd1fbdb2edd4.tar.gz cpython-f6c6b5821bff815bdc810de53992fd1fbdb2edd4.tar.bz2 |
bpo-41561: Add workaround for Ubuntu's custom security level (GH-24915)
Ubuntu 20.04 comes with a patched OpenSSL 1.1.1. Default security level
2 blocks TLS 1.0 and 1.1 connections. Regular OpenSSL 1.1.1 builds allow
TLS 1.0 and 1.1 on security level 2.
See:
See: https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/1899878
See: https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/1917625
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ef54865..d6be2b6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -127,7 +127,7 @@ jobs: build_ubuntu: name: 'Ubuntu' - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 needs: check_source if: needs.check_source.outputs.run_tests == 'true' env: |