Skip to content

Commit d48ac22

Browse files
committed
Pin dependencies in CI for MSRV build
Recently the MSRV build broke. We can pin the dependencies in the MSRV CI job. Pin `log` and `rustls` when running the MSRV CI job.
1 parent ff88a70 commit d48ac22

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/cont_integration.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ jobs:
4848
run: rustup component add clippy
4949
- name: Update toolchain
5050
run: rustup update
51+
- name: pin dependencies
52+
if: ${{ matrix.rust.version }} == 1.57.0
53+
run: cargo update -p log --precise 0.4.18 && cargo update -p rustls@0.21.2 --precise 0.21.1
5154
- name: Build
5255
run: cargo build --features ${{ matrix.features }} --no-default-features
5356
- name: Clippy

0 commit comments

Comments
 (0)