Skip to content

Security Audit

Security Audit #1607

Workflow file for this run

name: Security Audit
on:
schedule:
- cron: '0 0 * * *'
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
workflow_dispatch:
inputs: {}
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: caizixian/toolchain@v1.0.8
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/audit-check@v1.2.0
with:
token: ${{ secrets.GITHUB_TOKEN }}