Skip to content

Commit

Permalink
chore: test .txt file saving
Browse files Browse the repository at this point in the history
  • Loading branch information
maancham committed Mar 6, 2024
1 parent 1bbde3c commit 5d6ff47
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/periodic-audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ jobs:
id: cargo-audit
continue-on-error: true
run: |
AUDIT_OUTPUT=$(cargo audit)
echo $AUDIT_OUTPUT
echo "results=$AUDIT_OUTPUT" >> GITHUB_OUTPUT
cargo audit > audit_output.txt
cat audit_output.txt
RESULTS=$(cat audit_output.txt)
echo "results=$RESULTS" >> GITHUB_OUTPUT
# audit_output=$(cargo audit)
# echo "trimmed_results=audit_output" >> GITHUB_OUTPUT

Expand Down

0 comments on commit 5d6ff47

Please sign in to comment.