Skip to content

Security Audit

Security Audit #763

Workflow file for this run

name: Security Audit
# See <https://github.com/marketplace/actions/rust-audit-check>
on:
push:
branches: [main]
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
schedule:
- cron: "0 9 * * *" # run at 9 AM UTC
jobs:
security_audit:
runs-on: arc-public-large-amd64-runner
steps:
- uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
default: true
- uses: rustsec/audit-check@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}