Skip to content

Security Audit

Security Audit #13

Workflow file for this run

# Run cargo audit once every month and create issues for vulnerabilities found
name: Security Audit
on:
schedule:
# Run once every month (first of the month at midnight)
- cron: '0 0 1 * *'
jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Run cargo audit
uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
permissions:
# to create issues
issues: write
# to create check
checks: write