From 0b2b3701dc98293375db6d1c9731057914cdee92 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Fri, 17 Oct 2025 01:10:24 +0200 Subject: [PATCH] ci(security): add cargo-audit job (weekly + on push) --- .woodpecker.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.woodpecker.yml b/.woodpecker.yml index 76071cf..5c8d2fe 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -16,6 +16,25 @@ steps: - cargo clippy --workspace --all-features -- -D warnings - cargo test --workspace --all-features +--- +kind: pipeline +name: security-audit + +when: + event: + - push + - cron + branch: + - dev + cron: weekly-security + +steps: + - name: cargo-audit + image: rust:1.83 + commands: + - cargo install cargo-audit --locked + - cargo audit + --- kind: pipeline name: release