aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/audit.yaml
blob: abf0898b8138a7b5fd7a50538fc84076f55b9a71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
name: Security audit
on:
  schedule:
    - cron: '0 0 * * *'
jobs:
  audit:
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v1
      - uses: actions-rs/audit-check@v1
        with:
          token: ${{ secrets.GITHUB_TOKEN }}