From 84d855d242a6c2342e8b3a46b0922a09a639ae87 Mon Sep 17 00:00:00 2001 From: extrawurst <776816+extrawurst@users.noreply.github.com> Date: Wed, 14 Feb 2024 11:32:16 +0100 Subject: [PATCH] move audit checks to cargo-deny (#2048) * move audit checks to cargo-deny * remove separate sec audit step using old auditing --- .cargo/audit.toml | 2 -- .github/workflows/ci.yml | 17 ++--------------- 2 files changed, 2 insertions(+), 17 deletions(-) delete mode 100644 .cargo/audit.toml diff --git a/.cargo/audit.toml b/.cargo/audit.toml deleted file mode 100644 index 46ec91ce..00000000 --- a/.cargo/audit.toml +++ /dev/null @@ -1,2 +0,0 @@ -[advisories] -ignore = [] \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47dafd16..daa502d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -200,13 +200,9 @@ jobs: run: | cargo install --locked cargo-deny - - name: cargo-deny licenses + - name: cargo-deny checks run: | - cargo deny check licenses - - - name: cargo-deny bans - run: | - cargo deny check bans + cargo deny check udeps: name: udeps @@ -230,15 +226,6 @@ jobs: cargo install --git https://github.com/est31/cargo-udeps --locked cargo +nightly udeps --all-targets - sec: - name: Security audit - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: rustsec/audit-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - log-test: name: Changelog Test runs-on: ubuntu-latest