This commit is contained in:
Jordan Doyle 2022-03-14 22:51:26 +00:00
parent e6642a7a94
commit 3defb20ad0
No known key found for this signature in database
GPG key ID: 1EA6BAE6F66DC49A
4 changed files with 104 additions and 0 deletions

14
.github/workflows/audit_cron.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: Security audit (cron)
on:
schedule:
- cron: '0 0 * * *'
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}