watchexec/.github/workflows/audit.yml

19 lines
400 B
YAML
Raw Permalink Normal View History

name: Security audit
on:
2021-10-26 10:14:47 +02:00
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-10-26 10:13:57 +02:00
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}