Skip to content

Commit b0b91b7

Browse files
fix: msrv issues and update coverage toolchain
1 parent feafaac commit b0b91b7

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/code_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Rust toolchain
2020
uses: actions-rs/toolchain@v1
2121
with:
22-
toolchain: "1.65.0"
22+
toolchain: "1.67.0"
2323
override: true
2424
profile: minimal
2525
components: llvm-tools-preview

.github/workflows/cont_integration.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ jobs:
2929
uses: Swatinem/[email protected]
3030
- name: Pin dependencies for MSRV
3131
if: matrix.rust.version == '1.57.0'
32-
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"
32+
run: |
33+
cargo update -p log --precise "0.4.18"
34+
cargo update -p tempfile --precise "3.6.0"
35+
cargo update -p rustls:0.21.6 --precise "0.21.1"
36+
cargo update -p tokio:1.31.0 --precise "1.29.1"
37+
cargo update -p flate2:1.0.27 --precise "1.0.26"
3338
- name: Build
3439
run: cargo build ${{ matrix.features }}
3540
- name: Test

0 commit comments

Comments
 (0)