Skip to content

rust-audit

rust-audit #61

Workflow file for this run

---
name: rust-audit
on:
pull_request:
paths:
- '.github/workflows/rust-audit.yml'
- 'Cargo.toml'
- 'Cargo.lock'
push:
branches:
- main
- wip/next
paths:
- '.github/workflows/rust-audit.yml'
- 'Cargo.toml'
- 'Cargo.lock'
schedule:
- cron: '0 6 * * 1'
jobs:
cargo-audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
...