diff --git a/.cirrus.yml b/.cirrus.yml index 7ae522ad..e28191f8 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -40,6 +40,7 @@ linux_arm64_task: if [ -z "$RUST_VERSION" ]; then echo 'Downgrading dependencies to minimal versions' cargo update -Z minimal-versions + cargo update -p openssl --precise 0.10.39 else echo 'Skipped' fi diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index fdb59d4c..538763e5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -59,6 +59,11 @@ jobs: command: update args: -Z minimal-versions + - name: Pin some dependencies to specific versions (Nightly only) + if: ${{ matrix.rust == 'nightly' }} + run: | + cargo update -p openssl --precise 0.10.39 + - name: Pin some dependencies to specific versions (MSRV only) if: ${{ matrix.rust == '1.51.0' }} # hashbrown >= v0.12 requires Rust 2021 edition. diff --git a/.github/workflows/CIQuantaDisabled.yml b/.github/workflows/CIQuantaDisabled.yml index 7c4a70e9..39129a3b 100644 --- a/.github/workflows/CIQuantaDisabled.yml +++ b/.github/workflows/CIQuantaDisabled.yml @@ -52,6 +52,11 @@ jobs: command: update args: -Z minimal-versions + - name: Pin some dependencies to specific versions (Nightly only) + if: ${{ matrix.rust == 'nightly' }} + run: | + cargo update -p openssl --precise 0.10.39 + - name: Pin some dependencies to specific versions (MSRV only) if: ${{ matrix.rust == '1.51.0' }} # hashbrown >= v0.12 requires Rust 2021 edition.