Pin tooling in the CI to a specific version

Both Clippy and Rustfmt are pinned to the current latest version (2021-10-24)
This commit is contained in:
Waffle Maybe 2021-10-25 17:39:26 +03:00 committed by GitHub
parent adcfd196e0
commit 088a51cb5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ jobs:
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
profile: minimal profile: minimal
toolchain: nightly toolchain: nightly-2021-10-24
override: true override: true
components: rustfmt components: rustfmt
@ -34,7 +34,7 @@ jobs:
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
profile: minimal profile: minimal
toolchain: nightly toolchain: nightly-2021-10-24
override: true override: true
components: clippy components: clippy