Skip to content

Commit

Permalink
Allow cargo-audit workflow to fail (bytecodealliance#8280)
Browse files Browse the repository at this point in the history
Currently this workflow fails about 50% of the time due to what appears
to be rate limiting issues. I'm personally receiving emails every time
this fails and would rather not continue to receive emails. I've updated
this to allow failure to hopefully stop notifying me about this.
  • Loading branch information
alexcrichton authored Apr 2, 2024
1 parent c76e1fd commit 7279e46
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cargo-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ jobs:
- uses: rustsec/audit-check@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# This seems to hit rate limits about 50% of the time, unclear why, but
# emailing us once every few days is not the most useful thing.
continue-on-error: true

0 comments on commit 7279e46

Please # to comment.