From 2fecab1306ec5e55d3ea30c58b75ce49768e4671 Mon Sep 17 00:00:00 2001 From: "Jamil Lambert, PhD" Date: Tue, 30 Jun 2026 14:09:05 +0100 Subject: [PATCH] Fix duplicate rustsec issue creation When the audit runs on all 3 lockfiles at the same time a problem in multiple lockfiles can result in multiple issues being created for the same RustSec ID. Run the jobs one at a time so that issues created are seen by the next jobs and no duplicate issue is created. --- .github/workflows/audit.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 8adab10f7..df106cc75 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -17,6 +17,8 @@ jobs: checks: write strategy: fail-fast: false + # Run one at a time, otherwise parallel jobs create the same advisory issue twice. + max-parallel: 1 matrix: lockfile: [Cargo.lock, Cargo-minimal.lock, Cargo-recent.lock] steps: