From e12a34ce6b7d14b005177a56b4e80fe4f9e445d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Walther?= Date: Fri, 4 Nov 2022 11:58:23 +0100 Subject: [PATCH] Added audit notification --- .github/workflows/audit.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 5e31cede76..9cdbb4e1c8 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -14,11 +14,11 @@ jobs: - name: Install cargo deny run: cargo install --locked cargo-deny - name: Run cargo deny - run: cargo deny check advisories --hide-inclusion-graph &> .github/workflows/support-files/deny.message + run: cargo deny check advisories --hide-inclusion-graph &> .github/workflows/support-files/notifications/deny.message - uses: actions/upload-artifact@v3 with: name: report - path: .github/workflows/support-files/deny.message + path: .github/workflows/support-files/notifications/deny.message notification: needs: cargo-deny runs-on: ubuntu-latest @@ -29,7 +29,7 @@ jobs: uses: actions/download-artifact@v3 with: name: report - path: .github/workflows/support-files/deny.message + path: .github/workflows/support-files/notifications/deny.message - name: Keybase - Node Install run: npm install working-directory: .github/workflows/support-files