From 0541c22f200c40749b30d8f928cd034e862c9c79 Mon Sep 17 00:00:00 2001 From: forkwright Date: Wed, 1 Jul 2026 04:05:48 +0000 Subject: [PATCH] fix(ci): drop self-cancelling concurrency from security + release-please reusable workflows security.yml had cancel-in-progress: true with the same group key as callers, causing self-cancellation (0 jobs, failure in 1s). release-please.yml had the same structural issue. Applied the same fix as 66867bc (gate-attestation, codeql, dependabot-auto-merge, no-ai-attribution). --- .github/workflows/release-please.yml | 4 ---- .github/workflows/security.yml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index d74f225..c34ef28 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -29,10 +29,6 @@ permissions: contents: write pull-requests: write -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: false - jobs: release-please: runs-on: ubuntu-latest diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index ae32f7e..05ce56c 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -43,10 +43,6 @@ on: permissions: contents: read -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - env: CARGO_TERM_COLOR: always