From 72767dea92929ca91e135f53808e81933d6bb8b6 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Mon, 14 Jul 2025 17:38:24 -0400 Subject: [PATCH] ci: Remove use of actions-rs/clippy-check actions-rs/clippy-check has been deprecated for a while, so just run clippy directly. Note that this means lint annotations will no longer be shown, but clippy errors can still be seen in the action output. --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4bbf278..417f717 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,10 +43,6 @@ jobs: - run: cargo test - name: cargo build no_std run: cargo build --target thumbv7m-none-eabi --no-default-features - - name: cargo clippy - uses: actions-rs/clippy-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --all-features + - run: cargo clippy --all-features - name: Ensure README.md is updated run: '[ "$(< README.md)" = "$(cargo readme)" ]'