Skip to content

Commit

Permalink
fix: msrv issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirfomene committed Aug 16, 2023
1 parent feafaac commit d2d7cb1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ jobs:
uses: Swatinem/[email protected]
- name: Pin dependencies for MSRV
if: matrix.rust.version == '1.57.0'
run: cargo update -p log --precise "0.4.18" && cargo update -p tempfile --precise "3.6.0" && cargo update -p rustls:0.21.6 --precise "0.21.1"
run: |
cargo update -p log --precise "0.4.18"
cargo update -p tempfile --precise "3.6.0"
cargo update -p rustls:0.21.6 --precise "0.21.1"
cargo update -p tokio:1.31.0 --precise "1.29.1"
cargo update -p flate2:1.0.27 --precise "1.0.26"
- name: Build
run: cargo build ${{ matrix.features }}
- name: Test
Expand Down

0 comments on commit d2d7cb1

Please sign in to comment.