taskwarrior/.github/workflows/security.yml
Dustin J. Mitchell 56ea105e25 Ignore RUSTSEC-2020-0071
See discussion at
https://github.com/taskchampion/taskchampion/issues/304.  Note that
RUSTSEC-2020-0159 is the same bug as RUSTSEC-2020-0071.
2022-07-24 16:46:45 -04:00

21 lines
437 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 Dependencies"
steps:
- uses: actions/checkout@v2
- uses: GothenburgBitFactory/audit-check@master
with:
ignore: RUSTSEC-2021-0124, RUSTSEC-2020-0071
token: ${{ secrets.GITHUB_TOKEN }}