Add audit workflow (runs on Sundays at 23:10)
Some checks failed
Check, lint and test / Check, lint and test (push) Successful in 52s
Audit dependencies / audit (push) Failing after 4m29s

This commit is contained in:
Paul van Tilburg 2024-07-26 22:47:25 +02:00
parent e73f4ff661
commit 2568a17ee7
Signed by: paul
GPG key ID: C6DE073EDA9EEC4D

View file

@ -0,0 +1,26 @@
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