taskwarrior/.github/workflows/security.yml
Dustin J. Mitchell 72a8be3340 Update .github/workflows/security.yml
Co-authored-by: Tomas Babej <tomas@tbabej.com>
2022-07-24 16:46:45 -04:00

21 lines
442 B
YAML

name: security
on:
schedule:
- cron: '0 0 * * *'
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
audit:
runs-on: ubuntu-latest
permissions: write-all
name: "Audit Rust Dependencies"
steps:
- uses: actions/checkout@v2
- uses: GothenburgBitFactory/audit-check@master
with:
ignore: RUSTSEC-2021-0124, RUSTSEC-2020-0071
token: ${{ secrets.GITHUB_TOKEN }}