aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/audit.yaml
blob: 9b8fc7f9715ad8068a68da48bbdd00fca299d852 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: Security audit
on:
  schedule:
    - cron: '0 0 * * *'
  workflow_dispatch:
jobs:
  security_audit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v5
      - run: cargo generate-lockfile # create Cargo.lock
      - uses: rustsec/audit-check@v2.0.0
        with:
          token: ${{ secrets.GITHUB_TOKEN }}