podbringer/.forgejo/workflows/audit.yml
Paul van Tilburg 1ff6bff947
All checks were successful
Audit dependencies / audit (push) Successful in 6s
Check, lint and test / Check, lint and test (push) Successful in 2m44s
Move weekly audit run to Saturday at 23:00 [ci-skip]
2024-07-27 15:22:54 +02:00

26 lines
459 B
YAML

name: "Audit dependencies"
on:
push:
branches:
- main
paths:
- '.forgejo/workflows/audit.yml'
- '**/Cargo.toml'
- '**/Cargo.lock'
- '**/audit.toml'
schedule:
- cron: '0 23 * * 6'
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