summaryrefslogtreecommitdiffstats
path: root/.github/workflows/audit.yml
blob: a57b22f1e1997433597071192e3bfac12d0474b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: audit
on:
  schedule:
    - cron: "0 5 * * *"
jobs:
  audit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/install@master
        with:
          crate: cargo-audit
      - uses: actions-rs/audit-check@v1
        with:
          token: ${{ secrets.GITHUB_TOKEN }}