From 056a458d3025963874b113ff6cfe897373baf944 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Tue, 30 Jan 2024 12:51:49 +0100 Subject: [PATCH] ci: Ignore RSA advisory outside of scheduled runs (#922) --- .github/workflows/audit-rust.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/audit-rust.yml b/.github/workflows/audit-rust.yml index 1ec0225e..274ba674 100644 --- a/.github/workflows/audit-rust.yml +++ b/.github/workflows/audit-rust.yml @@ -33,3 +33,5 @@ jobs: - uses: rustsec/audit-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} + # https://github.com/tauri-apps/plugins-workspace/issues/774 + ignore: ${{ github.event_name != 'schedule' && 'RUSTSEC-2023-0071' || '' }}