taskwarrior/.github/workflows/security.yml
Dustin J. Mitchell 3aa14b3efc ignore RUSTSEC-2021-0124
This is a vulnerability in tokio, which is required by Actix-web. For
the moment, ignore it, and then decide whether to upgrade actix to suit,
or switch to a different (simpler) web server package.
2022-07-24 16:46:45 -04:00

21 lines
418 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
token: ${{ secrets.GITHUB_TOKEN }}