Browse Source

run security audit daily at midnight. (#391)

* run security audit daily at midnight.

* add new line to end of security_audit.yml
pull/397/head
n14little 5 years ago committed by GitHub
parent
commit
4e5b8ee2b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      .github/workflows/security_audit.yml

12
.github/workflows/security_audit.yml

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