Skip to content

Security Audit

Security Audit #2

Workflow file for this run

name: Security Audit
on:
schedule:
- cron: '0 0 * * 0' # Weekly
workflow_dispatch:
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Run cargo audit
run: cargo audit