Skip to content

Security Audit

Security Audit #27

Workflow file for this run

name: Security Audit
on:
pull_request:
types: [assigned, opened, synchronize, reopened]
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
schedule:
- cron: "0 0 * * 1" # every Monday at 00:00 UTC
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rustsec/audit-check@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ignore: RUSTSEC-2020-0071