Skip to content

Security audit

Security audit #71

Workflow file for this run

name: Security audit
on:
push:
branches: ["main"]
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
schedule:
- cron: "50 23 * * *"
jobs:
audit:
runs-on: ubuntu-latest
permissions:
issues: write
checks: write
contents: read
security-events: write
actions: read
steps:
- uses: actions/checkout@v4
- uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}