From 149f27db846d45a6eeacf62bbeff99aec89fe94f Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Fri, 3 Apr 2026 03:42:19 +0200 Subject: [PATCH] chore: Add audit workflow --- .gitea/workflows/audit.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/audit.yaml diff --git a/.gitea/workflows/audit.yaml b/.gitea/workflows/audit.yaml new file mode 100644 index 0000000..b1acc11 --- /dev/null +++ b/.gitea/workflows/audit.yaml @@ -0,0 +1,14 @@ +name: Security audit +on: + push: + paths: + - "**/Cargo.toml" + - "**/Cargo.lock" +jobs: + security_audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: rustsec/audit-check@v2.0.0 + with: + token: ${{ secrets.GH_TOKEN }}