Skip to content
This repository was archived by the owner on Dec 11, 2024. It is now read-only.

Commit 35c9c3f

Browse files
Remove no-longer-maintained clippy-check action (#238)
Also: Configure Dependabot to suggest new action steps when available
1 parent 986ec71 commit 35c9c3f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/dependabot.yml

+5
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,8 @@ updates:
77
directory: "/"
88
schedule:
99
interval: "daily"
10+
11+
- package-ecosystem: "github-actions"
12+
directory: "/"
13+
schedule:
14+
interval: "weekly"

.github/workflows/ci.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,8 @@ jobs:
6464
- name: Cache Rust dependencies
6565
uses: Swatinem/rust-cache@v2
6666

67-
- name: Cargo clippy
68-
uses: actions-rs/clippy-check@v1
69-
with:
70-
token: ${{ secrets.GITHUB_TOKEN }}
71-
args: --all-features --all-targets -- -D warnings
72-
env:
73-
RUST_BACKTRACE: "1"
67+
- name: Run Clippy
68+
run: cargo clippy --all-features --all-targets -- -Dwarnings
7469

7570
cargo_fmt:
7671
name: Enforce Rust code format

0 commit comments

Comments
 (0)