Skip to content

cargo-audit

cargo-audit #19

Workflow file for this run

name: cargo-audit
permissions:
issues: write
checks: write
on:
schedule:
- cron: '0 0 1 * *'
workflow_dispatch:
jobs:
audit:
runs-on: ubuntu-latest
env:
# to satisfy cargo-audit's MSRV,
# overriding rust-toolchain.toml
RUSTUP_TOOLCHAIN: stable
steps:
- uses: actions/checkout@v4
- uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}