diff options
author | Christian Heimes <christian@python.org> | 2022-03-15 20:31:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 20:31:00 (GMT) |
commit | a59ac1e7d20713573c15c5259c83e998a73e9094 (patch) | |
tree | 5b4039a408ec36350ba530bb5a939cbc7f353fcf /.azure-pipelines | |
parent | 88c243fd8d5a43282ef06bd0872e3b88c68bb856 (diff) | |
download | cpython-a59ac1e7d20713573c15c5259c83e998a73e9094.zip cpython-a59ac1e7d20713573c15c5259c83e998a73e9094.tar.gz cpython-a59ac1e7d20713573c15c5259c83e998a73e9094.tar.bz2 |
[3.10] bpo-47024: Update OpenSSL to 1.1.1n (GH-31895) (GH-31916)
Co-authored-by: Zachary Ware <zachary.ware@gmail.com>.
Co-authored-by: Christian Heimes <christian@python.org>
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 25cc726..d0efa77 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.1m + openssl_version: 1.1.1n steps: - template: ./posix-steps.yml @@ -83,7 +83,7 @@ jobs: variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage' testRunPlatform: linux-coverage - openssl_version: 1.1.1m + openssl_version: 1.1.1n steps: - template: ./posix-steps.yml diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml index e2aae32..a4f3246 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.1m + openssl_version: 1.1.1n steps: - template: ./posix-steps.yml @@ -83,7 +83,7 @@ jobs: variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage' testRunPlatform: linux-coverage - openssl_version: 1.1.1m + openssl_version: 1.1.1n steps: - template: ./posix-steps.yml |