mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
20 lines
374 B
YAML
20 lines
374 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: rustsec/audit-check@master
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|