From 577c4152fefd8b3472148711ad7e20b55401597c Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Sun, 8 Jun 2025 00:53:34 -0400 Subject: [PATCH] fix: Add missing toolchain parameter to fmt and clippy jobs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The dtolnay/rust-toolchain action requires an explicit toolchain parameter when pinned to a specific SHA. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60e5dfa..2a5e4a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,6 +85,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b # stable with: + toolchain: stable components: rustfmt - name: Check formatting run: cargo fmt -- --check @@ -97,6 +98,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b # stable with: + toolchain: stable components: clippy - name: Run clippy run: cargo clippy -- -D warnings