diff options
author | Ned Deily <nad@python.org> | 2021-12-22 04:25:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-22 04:25:09 (GMT) |
commit | 5c4d11fe755a7adeaee6b838bc8faceadc29ed7d (patch) | |
tree | b8ea9a2fa6bc6dcfed94b727fce818ec92048be9 /.azure-pipelines | |
parent | a2295a4029707ebaf2cd1bb8b3223b73f6dbfee6 (diff) | |
download | cpython-5c4d11fe755a7adeaee6b838bc8faceadc29ed7d.zip cpython-5c4d11fe755a7adeaee6b838bc8faceadc29ed7d.tar.gz cpython-5c4d11fe755a7adeaee6b838bc8faceadc29ed7d.tar.bz2 |
bpo-46106: Update OpenSSL to 1.1.1m (GH-30211) (GH-30225)
Co-authored-by: Ned Deily <nad@python.org>
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to '.azure-pipelines')
-rw-r--r-- | .azure-pipelines/ci.yml | 4 | ||||
-rw-r--r-- | .azure-pipelines/pr.yml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml index 2284a5f..25cc726 100644 --- a/.azure-pipelines/ci.yml +++ b/.azure-pipelines/ci.yml @@ -57,7 +57,7 @@ jobs: variables: testRunTitle: '$(build.sourceBranchName)-linux' testRunPlatform: linux - openssl_version: 1.1.1l + openssl_version: 1.1.1m steps: - template: ./posix-steps.yml @@ -83,7 +83,7 @@ jobs: variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage' testRunPlatform: linux-coverage - openssl_version: 1.1.1l + openssl_version: 1.1.1m steps: - template: ./posix-steps.yml diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml index 1a3bf75..e2aae32 100644 --- a/.azure-pipelines/pr.yml +++ b/.azure-pipelines/pr.yml @@ -57,7 +57,7 @@ jobs: variables: testRunTitle: '$(system.pullRequest.TargetBranch)-linux' testRunPlatform: linux - openssl_version: 1.1.1l + openssl_version: 1.1.1m steps: - template: ./posix-steps.yml @@ -83,7 +83,7 @@ jobs: variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage' testRunPlatform: linux-coverage - openssl_version: 1.1.1l + openssl_version: 1.1.1m steps: - template: ./posix-steps.yml |