Skip to content

.github/workflows/audit.yaml #54

.github/workflows/audit.yaml

.github/workflows/audit.yaml #54

Workflow file for this run

---
on:
push:
paths:
# Run if workflow changes
- '.github/workflows/audit.yaml'
# Run on changed dependencies
- '**/Cargo.toml'
- '**/Cargo.lock'
# Run if the configuration file changes
- '**/audit.toml'
# Rerun periodicly to pick up new advisories
schedule:
- cron: '0 0 * * *'
# Run manually
workflow_dispatch:
permissions: read-all
jobs:
audit:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/audit@v1
name: Audit Rust Dependencies