Skip to content

Dependency Audit

Dependency Audit #3

Workflow file for this run

name: Dependency Audit
on:
schedule:
- cron: "0 6 * * 1"
workflow_dispatch:
jobs:
audit:
name: Cargo Audit
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
- name: Install cargo-audit
run: cargo install cargo-audit --locked
- name: Audit dependencies
run: cargo audit