Skip to content

Commit

Permalink
Fix audit (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinI authored Nov 8, 2024
1 parent cb944ac commit 941a8b2
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,16 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable
- uses: cachix/install-nix-action@v30

- uses: cachix/cachix-action@v15
# If PR is from a non-collaborator (e.g. dependabot) the secrets are missing and the login to cachix fails.
continue-on-error: true
with:
name: espresso-systems-private
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
extraPullNames: nix-community
skipPush: ${{ github.actor == 'dependabot[bot]' }}

- name: Audit
run: cargo audit
run: nix develop .# -c cargo audit

0 comments on commit 941a8b2

Please sign in to comment.