Skip to content
This repository was archived by the owner on Jul 6, 2026. It is now read-only.

Security audit

Security audit #77

Workflow file for this run

name: Security audit
on:
schedule:
- cron: '0 6 * * 1'
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
audit:
name: Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}