chore: Added audit workflow
Build and deploy / build (push) Canceled after 0s
Build and deploy / Build container and manifests (push) Canceled after 0s
Build and deploy / Deploy container (push) Canceled after 0s

This commit is contained in:
2026-08-26 05:06:01 +02:00
parent 3816ec3777
commit 642748b460
+27
View File
@@ -0,0 +1,27 @@
name: Audit
on:
push:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
schedule:
- cron: "0 0 * * *"
jobs:
audit:
name: cargo audit
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@nightly
- name: Setup rust cache
uses: Swatinem/rust-cache@v2
- name: Audit check
uses: https://git.huizinga.dev/infra/rust-audit-check@v3.0.0
with:
token: ${{ secrets.GITEA_TOKEN }}