Skip to content

Commit

Permalink
perform an cargo-audit for crates with security vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
stlankes committed May 20, 2020
1 parent e2560d6 commit 14cc7a9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/security_audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Security audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
schedule:
- cron: '0 0 * * *'

jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 14cc7a9

Please sign in to comment.