Run cargo-audit #1104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run cargo-audit | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
security_audit: | |
if: github.repository == 'bytecodealliance/wasmtime' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: rustsec/[email protected] | |
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 |