Skip to content

Commit

Permalink
👷 Remove cargo-audit step in CI check
Browse files Browse the repository at this point in the history
Since it's function duplicates to what cargo-deny does
  • Loading branch information
nicks96432 committed Dec 6, 2024
1 parent faae27b commit 22c0492
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,11 @@ jobs:
uses: cargo-bins/cargo-binstall@main

- name: Install cargo check tools
run: cargo binstall --no-confirm --force cargo-deny cargo-outdated cargo-udeps cargo-audit
run: cargo binstall --no-confirm --force cargo-deny cargo-outdated cargo-udeps

# remove advisory-db is required to fetch it correctly
- name: Check
run: |
cargo deny check
cargo outdated --exit-code 1
cargo udeps
rm -rf ~/.cargo/advisory-db
cargo audit

0 comments on commit 22c0492

Please sign in to comment.