diff options
author | Christian Heimes <christian@python.org> | 2021-12-17 15:17:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-17 15:17:32 (GMT) |
commit | 2985feac4e02d590bb78bcce9e30864be53280ac (patch) | |
tree | 540b9a585d18804970bc619dca26f648bf3a7ecb /.github/workflows/build.yml | |
parent | efd6236d36b292c2c43540132c87cf8425e8d627 (diff) | |
download | cpython-2985feac4e02d590bb78bcce9e30864be53280ac.zip cpython-2985feac4e02d590bb78bcce9e30864be53280ac.tar.gz cpython-2985feac4e02d590bb78bcce9e30864be53280ac.tar.bz2 |
bpo-46114: Fix OpenSSL version check for 3.0.1 (GH-30170)
Diffstat (limited to '.github/workflows/build.yml')
-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 48671aa..4504b29 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -220,7 +220,7 @@ jobs: strategy: fail-fast: false matrix: - openssl_ver: [1.1.1l, 3.0.0] + openssl_ver: [1.1.1l, 3.0.1] env: OPENSSL_VER: ${{ matrix.openssl_ver }} MULTISSL_DIR: ${{ github.workspace }}/multissl |