From 13c874916ea250f69320dce85d3aba2f4ed99476 Mon Sep 17 00:00:00 2001 From: Rasmus Mikkelsen Date: Sat, 11 Oct 2025 21:04:50 +0200 Subject: [PATCH 1/3] Cancel ongoing workflows if a new one is created Added concurrency settings to the build job. --- .github/workflows/pipeline.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index d16218482..ba0dbc8fe 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -29,6 +29,10 @@ jobs: runs-on: - ubuntu-22.04 + concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} + cancel-in-progress: ${{ !contains(github.ref, 'release') && inputs.cancel-in-progress }} + environment: name: ${{ inputs.environment }} From e5b0cc9aa101d88b1128dcafd70d36b6a7f9b731 Mon Sep 17 00:00:00 2001 From: Rasmus Mikkelsen Date: Sat, 11 Oct 2025 21:05:19 +0200 Subject: [PATCH 2/3] Update Ubuntu version in CI pipeline to 24.04 --- .github/workflows/pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index ba0dbc8fe..c09fe5176 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -27,7 +27,7 @@ on: jobs: build: runs-on: - - ubuntu-22.04 + - ubuntu-24.04 concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} From 34658bc23bb7829d1627066e8a3d22925e945812 Mon Sep 17 00:00:00 2001 From: Rasmus Mikkelsen Date: Sat, 11 Oct 2025 21:16:34 +0200 Subject: [PATCH 3/3] Add missing cancel-in-progress input --- .github/workflows/pipeline.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index c09fe5176..8454c97b4 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -16,6 +16,10 @@ on: required: false type: string default: '0.37.51' + cancel-in-progress: + required: false + type: boolean + default: true environment: required: false type: string