Files
crete/.gitea/workflows/audit.yaml
T
Dreaded_X 383d909b1f
Security audit / security_audit (push) Failing after 5m30s
chore: Add audit workflow
2026-04-03 03:55:21 +02:00

20 lines
386 B
YAML

name: Security audit
on:
push:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GH_TOKEN }}