Skip to content

Security audit

Security audit #17

Workflow file for this run

name: Security audit
on:
push:
branches: [ main ]
paths:
- "Cargo.toml"
- ".github/workflows/audit.yml"
pull_request:
branches: [ main ]
paths:
- "Cargo.toml"
- ".github/workflows/audit.yml"
schedule:
- cron: "0 12 * * 0"
# Run manually
workflow_dispatch:
jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: VCS Checkout
uses: actions/checkout@v4
- name: Audit Rust Dependencies
uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}