Skip to content

Security audit

Security audit #199

Workflow file for this run

name: Security audit
on:
push:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".github/workflows/audit.yml"
schedule:
- cron: "0 0 * * *"
jobs:
security_audit:
name: Audit check
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
issues: write
steps:
- uses: actions/checkout@v4
- uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}