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