From f67096a3acc0b6d591f68ffd8a2ad7b300f048e6 Mon Sep 17 00:00:00 2001 From: Eric Scouten Date: Fri, 13 Sep 2024 09:37:16 -0700 Subject: [PATCH] Remove no-longer-maintained clippy-check action (contentauth/c2patool#238) Also: Configure Dependabot to suggest new action steps when available --- .github/dependabot.yml | 5 +++++ .github/workflows/ci.yml | 9 ++------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7d87c2fb7..f6d811a62 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,3 +7,8 @@ updates: directory: "/" schedule: interval: "daily" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9c9f18b0..9d053939c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,13 +64,8 @@ jobs: - name: Cache Rust dependencies uses: Swatinem/rust-cache@v2 - - name: Cargo clippy - uses: actions-rs/clippy-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --all-features --all-targets -- -D warnings - env: - RUST_BACKTRACE: "1" + - name: Run Clippy + run: cargo clippy --all-features --all-targets -- -Dwarnings cargo_fmt: name: Enforce Rust code format