From 66dbe09e663a47b1e904bb0dda84f2c21eb9a4f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Walther?= Date: Fri, 4 Nov 2022 11:22:54 +0100 Subject: [PATCH] Added audit notification --- .github/workflows/audit.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 50e0cd2bc2..b6aabd8084 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -5,13 +5,10 @@ jobs: cargo-deny: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: EmbarkStudios/cargo-deny-action@v1 - with: - log-level: warn - command: check - arguments: --all-features - command-arguments: "advisories >> .github/workflows/support-files/deny.message" + - name: Checkout repository code + uses: actions/checkout@v2 + - name: Run cargo deny + run: cargo deny check advisories --hide-inclusion-graph &> .github/workflows/support-files/deny.message - uses: actions/upload-artifact@v3 with: name: report