diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-03-22 14:30:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-22 13:30:47 +0000 |
| commit | 0dba0e26587a663e1de66c88d511379fc16d3612 (patch) | |
| tree | 1226779206d774b4d7fc50d27e70bc3ac3a8380f | |
| parent | 0a917aba984a13b50178e1bfcc84c42fa2084814 (diff) | |
Pin CI Rust version (#3763)
| -rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 730bf75f..6322e402 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable + - uses: dtolnay/rust-toolchain@1.77.0 - uses: Swatinem/rust-cache@v2 - run: cargo test --workspace --no-fail-fast @@ -38,7 +38,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable + - uses: dtolnay/rust-toolchain@1.77.0 + with: + components: clippy, rustfmt - uses: Swatinem/rust-cache@v2 - run: cargo clippy --workspace --all-targets --all-features - run: cargo fmt --check --all diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c62ad56d..4e855064 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable + - uses: dtolnay/rust-toolchain@1.77.0 with: target: ${{ matrix.target }} |
