chore: Add audit workflow

This commit is contained in:
2026-04-03 03:42:19 +02:00
parent a9e6a79220
commit 0a49d70820
+18
View File
@@ -0,0 +1,18 @@
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@v4
- uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GH_TOKEN }}