From 9fe646ebf68d7ef5dfd06986d852dbb5e0c90855 Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Thu, 7 May 2026 19:17:57 -0300 Subject: [PATCH] fix(ci): pin openssl and rustls deps --- .github/workflows/cont_integration.yml | 2 ++ ci/pin-msrv.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 59021ed1..887b1154 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -60,6 +60,8 @@ jobs: cargo update -p proptest --precise "1.8.0" cargo update -p "getrandom@0.4.2" --precise "0.2.17" cargo update -p "hyper-rustls" --precise "0.27.7" + cargo update -p openssl --precise "0.10.78" + cargo update -p openssl-sys --precise "0.9.114" - name: Pin dependencies for MSRV if: matrix.rust.version == '1.63.0' run: ./ci/pin-msrv.sh diff --git a/ci/pin-msrv.sh b/ci/pin-msrv.sh index ed9281f0..ccd27467 100755 --- a/ci/pin-msrv.sh +++ b/ci/pin-msrv.sh @@ -53,7 +53,7 @@ cargo update -p unicode-ident --precise "1.0.13" cargo update -p hyper-util --precise "0.1.6" cargo update -p pin-project --precise "1.1.5" cargo update -p pin-project-internal --precise "1.1.5" -cargo update -p "rustls@0.23.39" --precise "0.23.26" +cargo update -p "rustls@0.23.40" --precise "0.23.26" cargo update -p "libc" --precise "0.2.183" cargo update -p "semver" --precise "1.0.27" -- 2.49.0