From 9575eb3566a7be8f5df65a9301dbfb82f3ced30b Mon Sep 17 00:00:00 2001 From: tottoto Date: Sun, 2 Feb 2025 16:13:27 +0900 Subject: [PATCH] Resolve MSRV aware dependencies --- .github/workflows/linters.yml | 9 +++++++++ .github/workflows/tests.yml | 9 +++++++++ 2 files changed, 18 insertions(+) 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