From a5b0123bdae8ecded9a6662e30e0216bdbf07df7 Mon Sep 17 00:00:00 2001 From: Guillaume Date: Sat, 24 Jan 2026 15:18:28 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Use=20GitHub=20concurrency?= =?UTF-8?q?=20instead=20of=20styfle/cancel-workflow-action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/continuous_integration.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 127fbc322..93c374cbc 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -8,6 +8,10 @@ on: branches: - master +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} + jobs: continuous-integration: @@ -22,12 +26,6 @@ jobs: fail-fast: false steps: - # Cancel previous runs of the same branch - - name: cancel - uses: styfle/cancel-workflow-action@0.12.1 - with: - access_token: ${{ github.token }} - - name: "Checkout" uses: "actions/checkout@v5"