From b07ac1a4f259a186f56b78fe415be8c63a4acf59 Mon Sep 17 00:00:00 2001 From: mulhern Date: Tue, 26 May 2026 12:28:07 -0400 Subject: [PATCH] github actions: Use stable toolchain to build typos-cli We are really just interested in the results of the tool, which will likely be the same regardless of which compiler version it was compiled with, so just build typos-cli with the default toolchain. Switch to using actions-rust-lang/setup-rust-toolchain@v1 because we use that action in our other projects. Signed-off-by: mulhern --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0b80144..1a9683e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,10 +42,9 @@ jobs: - uses: actions/checkout@v6 with: persist-credentials: false - - uses: dtolnay/rust-toolchain@master + - uses: actions-rust-lang/setup-rust-toolchain@v1 with: components: cargo - toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN - uses: baptiste0928/cargo-install@v3 with: crate: typos-cli