diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-03-22 14:30:47 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2024-05-17 14:27:58 +0200 |
| commit | b2fb64f79cf8774015a15658e3c2e62b9f2f4442 (patch) | |
| tree | 2f7cfa8bc21a9f78fe1e387fb7fdd5a5b37d7f2d | |
| parent | 15d01c49f5b6796605204d334084f71a995156ff (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 }} |
