Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
run: SKIP_CIRCUIT_BUILD=1 cargo doc --locked --no-deps --document-private-items

security-audit:
name: 🔐 Security Audit (non-blocking)
name: 🔐 Security Audit
needs: fast-checks
runs-on: ubuntu-latest
timeout-minutes: 10
Expand All @@ -132,11 +132,8 @@ jobs:
if ! command -v cargo-audit >/dev/null 2>&1; then
cargo install cargo-audit --locked --version 0.22.1
fi
- name: Run cargo audit (informational only)
# Only this step is non-blocking — every other step in this job
# (checkout, caches, cargo-audit install) must fail loudly so we
# don't silently skip the audit.
continue-on-error: true
# Blocking so advisories fail PRs/main before the release publish workflow.
- name: Run cargo audit
run: cargo audit

examples:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release-tag-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
ref: ${{ needs.create-tag.outputs.version }}

- name: Install cargo-audit
run: cargo install cargo-audit --locked
run: cargo install cargo-audit --locked --version 0.22.1

- name: Run security audit
run: cargo audit
Expand Down
Loading
Loading