geo-uri-rs/.forgejo/workflows/audit.yml
Paul van Tilburg edfc07d729
All checks were successful
Audit dependencies / audit (push) Successful in 6s
Check, lint and test / Check, lint and test (push) Successful in 43s
Add audit workflow (runs on Saturdays at 0:00)
2024-07-27 15:15:21 +02:00

26 lines
458 B
YAML

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