diff options
author | Gregory P. Smith <greg@krypto.org> | 2023-02-09 17:40:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 17:40:51 (GMT) |
commit | b41c47cd0606e8273aef4813e83fe2deaf9ab33b (patch) | |
tree | 7d62b88e7d1b88e49ade3d9735c70652babb6ac5 /.azure-pipelines | |
parent | 6d92373f500eb81a175516b3abb16e21f0806c1f (diff) | |
download | cpython-b41c47cd0606e8273aef4813e83fe2deaf9ab33b.zip cpython-b41c47cd0606e8273aef4813e83fe2deaf9ab33b.tar.gz cpython-b41c47cd0606e8273aef4813e83fe2deaf9ab33b.tar.bz2 |
gh-101726: Update the OpenSSL version to 1.1.1t (GH-101727)
Fixes CVE-2023-0286 (High) and a couple of Medium security issues.
https://www.openssl.org/news/secadv/20230207.txt
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 e45dc2d..6302b54 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.1q + openssl_version: 1.1.1t steps: - template: ./posix-steps.yml @@ -83,7 +83,7 @@ jobs: variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage' testRunPlatform: linux-coverage - openssl_version: 1.1.1q + openssl_version: 1.1.1t steps: - template: ./posix-steps.yml diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml index af94ebf..5f72187 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.1q + openssl_version: 1.1.1t steps: - template: ./posix-steps.yml @@ -83,7 +83,7 @@ jobs: variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage' testRunPlatform: linux-coverage - openssl_version: 1.1.1q + openssl_version: 1.1.1t steps: - template: ./posix-steps.yml |