From a2d33c54479f825f6567448d44ae7b74a12132c5 Mon Sep 17 00:00:00 2001 From: Tunglies <77394545+Tunglies@users.noreply.github.com> Date: Thu, 25 Sep 2025 19:21:06 +0800 Subject: [PATCH] fix: update rust-toolchain action to use master branch for consistency --- .github/workflows/lint-clippy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint-clippy.yml b/.github/workflows/lint-clippy.yml index cd116cd9..1161faa5 100644 --- a/.github/workflows/lint-clippy.yml +++ b/.github/workflows/lint-clippy.yml @@ -23,7 +23,10 @@ jobs: uses: actions/checkout@v4 - name: Install Rust Stable - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@master + with: + toolchain: stable + components: clippy - name: Add Rust Target run: rustup target add ${{ matrix.target }}