Fix audit workflow

This commit is contained in:
thunderbiscuit 2022-11-14 13:11:43 -05:00
parent be058e11d9
commit 6a9c2eb80e
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

@ -9,14 +9,12 @@ on:
- cron: '0 0 * * 0' # Once per week - cron: '0 0 * * 0' # Once per week
jobs: jobs:
security_audit: security_audit:
name: Security Audit
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
defaults:
run:
working-directory: bdk-ffi
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions-rs/audit-check@v1 - uses: actions-rs/audit-check@v1
with: with:
args: --manifest-path bdk-ffi/Cargo.toml
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}