From 70cc4928747a90ab91b8462e921a022ce28c946d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kl=C3=A9ment?= <50872057+KlementXV@users.noreply.github.com> Date: Sat, 17 Aug 2024 10:26:52 +0000 Subject: [PATCH] fix: remove audit step --- .github/workflows/rust-tests.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/rust-tests.yml b/.github/workflows/rust-tests.yml index 9c60f95b..2d54230b 100644 --- a/.github/workflows/rust-tests.yml +++ b/.github/workflows/rust-tests.yml @@ -8,6 +8,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + security-events: write steps: - name: Checkout code uses: actions/checkout@v4 @@ -55,22 +56,6 @@ jobs: - name: No-default features run: cargo test --workspace --no-default-features - security_audit: - runs-on: ubuntu-latest - permissions: - security-events: write - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Install Rust - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - components: clippy - override: true - - name: Run Clippy run: | cargo clippy --all-features --message-format=json | clippy-sarif | tee results_clippy.sarif | sarif-fmt