You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
540 B
18 lines
540 B
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/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
|
|
|