Skip to content

Security audit

Security audit #136

Workflow file for this run

name: "Security audit"
on:
push:
paths:
- '.github/workflows/audit.yml'
- '**/Cargo.toml'
- '**/Cargo.lock'
- '**/audit.toml'
schedule:
- cron: '0 0 * * *'
# Run manually
workflow_dispatch:
jobs:
audit:
if: ${{ github.repository_owner == 'Granddave' }}
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- uses: actions/checkout@v4
- name: Get build cache
uses: Swatinem/rust-cache@v2
- uses: actions-rust-lang/audit@v1
name: Audit Rust Dependencies