Skip to content

Security Audit

Security Audit #43

Workflow file for this run

name: Security Audit
on:
schedule:
- cron: "0 7 * * *"
push:
paths:
- "**/Cargo.lock"
- "**/Cargo.toml"
workflow_dispatch:
permissions:
checks: write
contents: read
issues: write
jobs:
audit:
name: cargo-audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: rustsec/audit-check@69366f33c96575abad1ee0dba8212993eecbe998 # v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}