podbringer/.forgejo/workflows/audit.yml
Paul van Tilburg 2568a17ee7
Some checks failed
Check, lint and test / Check, lint and test (push) Successful in 52s
Audit dependencies / audit (push) Failing after 4m29s
Add audit workflow (runs on Sundays at 23:10)
2024-07-26 22:47:34 +02:00

26 lines
460 B
YAML

name: "Audit dependencies"
on:
push:
branches:
- main
paths:
- '.forgejo/workflows/audit.yml'
- '**/Cargo.toml'
- '**/Cargo.lock'
- '**/audit.toml'
schedule:
- cron: '10 23 * * 0'
workflow_dispatch:
jobs:
audit:
runs-on: rust-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run cargo audit
run: cargo audit