summaryrefslogtreecommitdiff
path: root/.github/workflows/audit.yaml
blob: b7c12a0049ee4954590981f86d7b346892bc5e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: audit crates
# this checks our dependencies for
# security advisories every saturday

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

jobs:
  audit:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3
      - uses: DeterminateSystems/nix-installer-action@main

      - name: run audit
        run: |
          nix build --accept-flake-config -L .#checks.x86_64-linux.audit