Skip to content

Security audit

Security audit #9

Workflow file for this run

name: Security audit
on:
push:
branches: [main]
paths:
- "Cargo.toml"
- "Cargo.lock"
- ".github/workflows/security.yml"
pull_request:
paths:
- "Cargo.toml"
- "Cargo.lock"
- ".github/workflows/security.yml"
schedule:
- cron: "17 6 * * 1"
workflow_dispatch:
permissions:
contents: read
jobs:
audit:
name: RustSec advisory audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install cargo-audit
uses: taiki-e/install-action@v2.83.4
with:
tool: cargo-audit@0.22.2
fallback: none
- name: Audit locked dependencies
run: cargo audit