From dcfe0b47f6b39af6ce8bc41887306fc8e21f041f Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 31 Aug 2022 14:33:21 +0200 Subject: [PATCH] Remove audit job (included in deny) --- .github/workflows/ci.yml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index daa98460..a7fcb060 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,33 +35,6 @@ jobs: - run: mk/clippy.sh - audit: - runs-on: ubuntu-20.04 - - steps: - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - profile: minimal - - - uses: actions/cache@v2 - with: - path: | - ~/.cargo/bin/cargo-audit - ~/.cargo/.crates.toml - ~/.cargo/.crates2.json - key: ${{ runner.os }}-v2-cargo-audit-0.13.1 - - - run: cargo install cargo-audit --vers "0.13.1" - - - uses: actions/checkout@v2 - with: - persist-credentials: false - - - run: cargo generate-lockfile - - - run: cargo audit --deny warnings - deny: runs-on: ubuntu-20.04