From 839f9abdda2d6bbcfd7bfcbd121f06f852f6a937 Mon Sep 17 00:00:00 2001 From: Benno van den Berg Date: Mon, 11 Dec 2023 15:59:08 +0100 Subject: [PATCH] Replace actions-rs/clippy-check with giraffate/clippy-action --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1375ac1..db61549 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,11 +36,11 @@ jobs: - name: Build binary and tests run: cargo build --bins --tests --release - - name: Lint code - uses: actions-rs/clippy-check@v1 + - name: Clippy + uses: giraffate/clippy-action@v1 with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --all-features --release + filter_mode: nofilter + clippy_flags: --all-features --release - name: Run tests run: cargo test --release