From ffb43d1456cf19f091edf1edb8d395f5ff54e0dd Mon Sep 17 00:00:00 2001 From: maancham Date: Wed, 6 Mar 2024 12:07:11 -0500 Subject: [PATCH] fix: add 2>&1 to cargo audit --- .github/workflows/periodic-audit.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/periodic-audit.yaml b/.github/workflows/periodic-audit.yaml index 7ad64fbff..f0c1aa2f5 100644 --- a/.github/workflows/periodic-audit.yaml +++ b/.github/workflows/periodic-audit.yaml @@ -32,7 +32,7 @@ jobs: id: cargo-audit continue-on-error: true run: | - cargo audit > audit_output.txt + cargo audit > audit_output.txt 2>&1 cat audit_output.txt RESULTS=$(cat audit_output.txt) echo "results=$RESULTS" >> GITHUB_OUTPUT