Skip to content

Security audit

Security audit #2503

Workflow file for this run

---
name: Security audit
'on':
# push:
# paths:
# # Run if workflow changes
# - '.github/workflows/audit.yml'
# # Run on changed dependencies
# - '**/Cargo.toml'
# - '**/Cargo.lock'
# # Run if the configuration file changes
# - '**/audit.toml'
# Rerun periodicly to pick up new advisories
schedule:
- cron: '43 05 * * *'
# Run manually
workflow_dispatch:
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rustsec/audit-check@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}