mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00

See discussion at https://github.com/taskchampion/taskchampion/issues/304. Note that RUSTSEC-2020-0159 is the same bug as RUSTSEC-2020-0071.
21 lines
437 B
YAML
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 }}
|