Skip to content

security audit

security audit #160

Workflow file for this run

name: security audit
on:
schedule:
- cron: "0 0 * * 0" # Run weekly on Sunday
workflow_dispatch:
push:
paths:
- '*.toml'
- '*.lock'
pull_request:
paths:
- '*.toml'
- '*.lock'
jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
with:
key: stable
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Run audit
run: cargo audit