From af7df87e0ed00fcda166738097486443b02bc560 Mon Sep 17 00:00:00 2001 From: Niko Savola Date: Fri, 5 Jun 2026 11:58:37 +0300 Subject: [PATCH] Use native concurrency groups in build workflow The cancel-workflow-action step was likely added before native concurrency groups existed --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 33a57a8c9..04ff02ca9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,6 +12,10 @@ on: release: types: [published] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: build: runs-on: ${{ matrix.os }} @@ -47,8 +51,6 @@ jobs: haskell: true large-packages: true - uses: hmarr/debug-action@v3 - - name: Cancel Workflow Action - uses: styfle/cancel-workflow-action@0.13.1 - uses: actions/checkout@v6 - name: ccache if: matrix.os != 'ubuntu-24.04-arm'