Skip to content

Commit

Permalink
ci: fix dependency versions for MSRV 1.57.0
Browse files Browse the repository at this point in the history
  • Loading branch information
notmandatory committed Sep 23, 2023
1 parent 8ff5c00 commit c587389
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
rust:
- version: 1.65.0 # STABLE
- version: stable
clippy: true
- version: 1.57.0 # MSRV
features:
Expand Down Expand Up @@ -50,7 +50,19 @@ jobs:
run: rustup update
- name: pin dependencies
if: matrix.rust.version == '1.57.0'
run: cargo update -p log --precise 0.4.18 && cargo update -p rustls:0.21.2 --precise 0.21.1 && cargo update -p time:0.3.15 --precise 0.3.13
run: |
cargo update -p reqwest --precise 0.11.18
cargo update -p tokio --precise 1.29.1
cargo update -p tokio-util --precise 0.7.8
cargo update -p tempfile --precise 3.6.0
cargo update -p rustls --precise 0.21.1
cargo update -p rustls-webpki:0.101.6 --precise 0.101.1
cargo update -p rustls-webpki:0.100.3 --precise 0.100.1
cargo update -p h2 --precise 0.3.20
cargo update -p cc --precise 1.0.81
cargo update -p time:0.3.15 --precise 0.3.13
cargo update -p flate2:1.0.27 --precise 1.0.26
cargo update -p hyper-rustls --precise 0.24.0
- name: Build
run: cargo build --features ${{ matrix.features }} --no-default-features
- name: Clippy
Expand Down

0 comments on commit c587389

Please sign in to comment.