diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index d605dcb..4d4755b 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -27,6 +27,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + override: true + - name: Resolve MSRV aware dependencies + run: cargo update + env: + CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: fallback - uses: actions-rs/toolchain@v1 with: toolchain: 1.70.0 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4a72b39..07e0e08 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,6 +14,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + override: true + - name: Resolve MSRV aware dependencies + run: cargo update + env: + CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: fallback - uses: actions-rs/toolchain@v1 with: toolchain: 1.70.0