Skip to content

Commit f545110

Browse files
committed
fix: ci/cd workflows
1 parent 6534f10 commit f545110

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: Build pull request
2+
concurrency:
3+
group: ${{ github.ref }}
4+
cancel-in-progress: true
25

36
on:
47
pull_request:
@@ -17,12 +20,12 @@ jobs:
1720
node-version: [18.x]
1821

1922
steps:
20-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2124
with:
2225
token: ${{ secrets.GH_TOKEN }}
2326

2427
- name: Setting up ${{ matrix.node-version }}
25-
uses: actions/setup-node@v3
28+
uses: actions/setup-node@v4
2629
with:
2730
cache: 'npm'
2831
node-version: ${{ matrix.node-version }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Release
22
concurrency:
3-
group: ${{ github.ref }}
3+
group: release
44
cancel-in-progress: true
55

66
permissions:

0 commit comments

Comments
 (0)