Skip to content

Commit af7df87

Browse files
committed
Use native concurrency groups in build workflow
The cancel-workflow-action step was likely added before native concurrency groups existed
1 parent 6270877 commit af7df87

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ on:
1212
release:
1313
types: [published]
1414

15+
concurrency:
16+
group: ${{ github.workflow }}-${{ github.ref }}
17+
cancel-in-progress: true
18+
1519
jobs:
1620
build:
1721
runs-on: ${{ matrix.os }}
@@ -47,8 +51,6 @@ jobs:
4751
haskell: true
4852
large-packages: true
4953
- uses: hmarr/debug-action@v3
50-
- name: Cancel Workflow Action
51-
uses: styfle/cancel-workflow-action@0.13.1
5254
- uses: actions/checkout@v6
5355
- name: ccache
5456
if: matrix.os != 'ubuntu-24.04-arm'

0 commit comments

Comments
 (0)