Skip to content

Commit 2f1242c

Browse files
committed
chore: update deps
1 parent d8e9d18 commit 2f1242c

File tree

9 files changed

+25
-9
lines changed

9 files changed

+25
-9
lines changed

.github/workflows/audit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55

66
concurrency:
7-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
7+
group: ${{ github.workflow }}-${{ github.ref }}
88
cancel-in-progress: true
99

1010
jobs:

.github/workflows/build-docs.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: Build docs
33
on:
44
push:
55

6-
concurrency: ${{ github.workflow }}-${{ github.ref }}
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
79

810
jobs:
911
build:

.github/workflows/build-packages.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ name: Build Packages
44
on:
55
push:
66

7-
concurrency: ${{ github.workflow }}-${{ github.ref }}
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
810

911
jobs:
1012
build:

.github/workflows/dev-packages.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ name: Create Dev Release
44

55
on: workflow_dispatch
66

7-
concurrency: ${{ github.workflow }}-${{ github.ref }}
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
810

911
jobs:
1012
publish:

.github/workflows/diagnostics-image-build.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: Diagnostics Image Build
33
on:
44
push:
55

6-
concurrency: ${{ github.workflow }}-${{ github.ref }}
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
79

810
jobs:
911
build-docker-image:

.github/workflows/diagnostics-image-release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ on:
88
tags:
99
- '@powersync/diagnostics-app*'
1010

11-
concurrency: ${{ github.workflow }}-${{ github.ref }}
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: true
1214

1315
jobs:
1416
release-docker-image:

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ on:
55
branches:
66
- main
77

8-
concurrency: ${{ github.workflow }}-${{ github.ref }}
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
911

1012
jobs:
1113
release:

.github/workflows/test-isolated.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ name: Test Isolated Demos
44
on:
55
push:
66

7-
concurrency: ${{ github.workflow }}-${{ github.ref }}
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
810

911
jobs:
1012
test:

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ name: Test Packages
44
on:
55
push:
66

7-
concurrency: ${{ github.workflow }}-${{ github.ref }}
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
810

911
jobs:
1012
test:

0 commit comments

Comments
 (0)