Files
telnet-server/.github/workflows/cargo-audit.yml
Laika 16dd18b400
Some checks failed
Cargo test & clippy / build (push) Has been cancelled
Cargo test & clippy / rust-clippy-analyze (push) Has been cancelled
Cargo security audit / audit (push) Failing after 4s
Initial commit
2025-11-19 23:04:40 +01:00

24 lines
384 B
YAML

name: Cargo security audit
on:
schedule:
- cron: "31 1 * * *"
push:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
jobs:
audit:
defaults:
run:
working-directory: ./backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}