Skip to content

security audit

security audit #376

name: security audit
on:
workflow_dispatch:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
schedule:
- cron: '5 4 * * 6'
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- run: cargo install cargo-audit && cargo audit || true && cargo audit