Run audit if deps changed, on merge requests and scheduled
Some checks are pending
continuous-integration/drone/push Build is pending

This commit is contained in:
Valentin Brandl 2019-11-25 16:50:17 +01:00
parent 7fc920cddd
commit 4959fabd29
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

31
.github/workflows/audit.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: Security audit
on:
schedule:
- cron: '0 1 * * *'
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
pull_request:
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cache cargo registry
uses: actions/cache@v1
with:
path: /usr/share/rust/.cargo/registry
key: ${{ runner.os }}-cargo-registry
- name: Cache cargo index
uses: actions/cache@v1
with:
path: /usr/share/rust/.cargo/git
key: ${{ runner.os }}-cargo-index
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}