aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/audit.yml
blob: 3a4b740b0a4d09ea0061c83b8c6ba3a1e129ba79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Audit 🩺

on:
  schedule:
    - cron: "0 0 * * *"

jobs:
  check:
    runs-on: ubuntu-20.04
    steps:
      - name: Checkout 🛒
        uses: actions/checkout@v2

      - name: Audit 🩺
        uses: actions-rs/audit-check@v1
        with:
          token: ${{ github.token }}