Skip to content

Commit

Permalink
fix: add 2>&1 to cargo audit
Browse files Browse the repository at this point in the history
  • Loading branch information
maancham committed Mar 6, 2024
1 parent 5d6ff47 commit ffb43d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/periodic-audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ffb43d1

Please sign in to comment.