fix: msrv issues and update coverage toolchain
This commit is contained in:
parent
feafaaca31
commit
b0b91b7418
2
.github/workflows/code_coverage.yml
vendored
2
.github/workflows/code_coverage.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
|||||||
- name: Install Rust toolchain
|
- name: Install Rust toolchain
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: "1.65.0"
|
toolchain: "1.67.0"
|
||||||
override: true
|
override: true
|
||||||
profile: minimal
|
profile: minimal
|
||||||
components: llvm-tools-preview
|
components: llvm-tools-preview
|
||||||
|
7
.github/workflows/cont_integration.yml
vendored
7
.github/workflows/cont_integration.yml
vendored
@ -29,7 +29,12 @@ jobs:
|
|||||||
uses: Swatinem/rust-cache@v2.2.1
|
uses: Swatinem/rust-cache@v2.2.1
|
||||||
- name: Pin dependencies for MSRV
|
- name: Pin dependencies for MSRV
|
||||||
if: matrix.rust.version == '1.57.0'
|
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
|
- name: Build
|
||||||
run: cargo build ${{ matrix.features }}
|
run: cargo build ${{ matrix.features }}
|
||||||
- name: Test
|
- name: Test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user