Skip to content

Commit

Permalink
ci: fix audit check attempt 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Bostoen committed Nov 28, 2024
1 parent 8dccc44 commit 109b241
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,34 @@ permissions:
contents: read

jobs:
security-audit:
# security-audit:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# project: [bolt-sidecar, bolt-cli, bolt-boost]
# defaults:
# run:
# working-directory: ${{ matrix.project }}
# name: Security Audit for ${{ matrix.project }}
# steps:
# - uses: actions/checkout@v4
# - name: Run cargo audit
# run: |
# cargo generate-lockfile
# cargo audit

# with:
# token: ${{ secrets.GITHUB_TOKEN }}

audit-sidecar:
runs-on: ubuntu-latest
strategy:
matrix:
project: [bolt-sidecar, bolt-cli, bolt-boost]
defaults:
run:
working-directory: ${{ matrix.project }}
name: Security Audit for ${{ matrix.project }}
working-directory: bolt-sidecar
name: Security Audit for bolt-sidecar
steps:
- uses: actions/checkout@v4
- uses: actions-rs/audit-check@v1
- name: Run cargo audit
uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 109b241

Please sign in to comment.