Skip to content

Commit

Permalink
Add regular dependency security audit
Browse files Browse the repository at this point in the history
  • Loading branch information
RadicalZephyr committed Jul 17, 2020
1 parent a0427ef commit b69a056
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/audit.yml
@@ -0,0 +1,21 @@
name: Security Audit

on:
push:
branches:
- master
paths:
- '**/Cargo.toml'
schedule:
- cron: '0 9 * * *' # run at 9 AM UTC

jobs:
security-audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Audit Check
uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b69a056

Please sign in to comment.