Skip to content

Security Audit

Security Audit #39

Workflow file for this run

name: Security Audit
on:
push:
branches: [main]
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
pull_request:
branches: [main]
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
schedule:
# Once week at midnight UTC
- cron: '0 0 * * 0'
workflow_dispatch:
jobs:
sec:
name: Security audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}