hoc/.github/workflows/audit.yml

29 lines
621 B
YAML
Raw Normal View History

name: Security audit
on:
schedule:
- cron: '0 1 * * *'
push:
paths:
2020-11-23 14:11:18 +01:00
- '**/Cargo.toml'
- '**/Cargo.lock'
pull_request:
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
2020-11-23 14:11:18 +01:00
- uses: actions/checkout@v2
2020-11-23 14:19:11 +01:00
- name: Cache cargo registry, index and build directory
uses: actions/cache@v2
with:
2020-11-23 14:19:11 +01:00
path: |
~/.cargo/registry
~/.cargo/git
./target
2020-11-23 14:36:43 +01:00
key: audit-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}