aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/audit.yml
blob: 1ec1c8e5a196548150f3bc43889aefbdd7b974af (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@v3

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