chore(audit): add security audit workflow

This commit is contained in:
orhun 2021-07-27 13:46:25 +03:00
parent e497859da5
commit 44fa1c6bab
No known key found for this signature in database
GPG key ID: F83424824B3E4B90

12
.github/workflows/audit.yml vendored Normal file
View file

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