ci(security): add cargo-audit job (weekly + on push)

This commit is contained in:
2025-10-17 01:10:24 +02:00
parent 438b05b8a3
commit 0b2b3701dc

View File

@@ -16,6 +16,25 @@ steps:
- cargo clippy --workspace --all-features -- -D warnings - cargo clippy --workspace --all-features -- -D warnings
- cargo test --workspace --all-features - 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 kind: pipeline
name: release name: release