From 22c0492e609919a0af818008e8f7f49df0221031 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=88=91=E5=8F=AF=E8=83=BD=E5=BE=88=E5=BB=A2?= Date: Fri, 6 Dec 2024 19:18:16 +0800 Subject: [PATCH] :construction_worker: Remove cargo-audit step in CI check Since it's function duplicates to what cargo-deny does --- .github/workflows/check.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index b50b2b6..26e5cbb 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -29,7 +29,7 @@ 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 @@ -37,5 +37,3 @@ jobs: cargo deny check cargo outdated --exit-code 1 cargo udeps - rm -rf ~/.cargo/advisory-db - cargo audit