Skip to content

Commit 163890c

Browse files
committed
chore(pipeline): update to 0.8.9
1 parent b64f28e commit 163890c

5 files changed

Lines changed: 80 additions & 59 deletions

File tree

.async-pipeline/tasks.lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,5 +223,5 @@
223223
}
224224
],
225225
"hash": "sha256:b998a48a5ea7d601cd6b02ad3a35aee62990a0f041ce270060c47d3e2afce3ea",
226-
"generatedAt": "2026-06-18T04:13:44.614Z"
226+
"generatedAt": "2026-06-18T04:29:55.771Z"
227227
}

.github/async-pipeline.lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"generator": "@async/pipeline",
44
"config": "pipeline.ts",
55
"workflow": ".github/workflows/async-pipeline.yml",
6-
"hash": "sha256:f9c8c567862ca7cf09bda9ebc7da2958ede44bbdd5f7388495b33269874ce7fb",
7-
"generatedAt": "2026-06-18T04:13:44.611Z",
6+
"hash": "sha256:48a465a95ebc5c3d377f8ab95e32ae20ca93fcefe8428ac974289407b5bd39ab",
7+
"generatedAt": "2026-06-18T04:29:55.768Z",
88
"triggers": {
99
"pull_request": {
1010
"types": [
@@ -140,7 +140,7 @@
140140
"packageManager": "pnpm",
141141
"packageManagerVersion": "10.20.0",
142142
"command": "pnpm async-pipeline",
143-
"setup": "pnpm",
143+
"setup": "node",
144144
"nodeVersion": "24",
145145
"runtime": [
146146
"node@24"

.github/workflows/async-pipeline.yml

Lines changed: 70 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,17 @@ jobs:
5353
restore-keys: |
5454
async-pipeline-${{ runner.os }}-
5555
56-
- name: Setup pnpm runtime
57-
uses: pnpm/setup@cf03a9b516e09bc5a90f041fc26fc930c9dc631b # v1.0.0
56+
- name: Setup Node
57+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
5858
with:
59-
version: 10.20.0
60-
runtime: node@24
61-
install: false
62-
cache: true
63-
cache-dependency-path: "pnpm-lock.yaml"
59+
node-version: 24
60+
registry-url: https://registry.npmjs.org/
61+
package-manager-cache: false
62+
63+
- name: Enable pnpm
64+
run: |
65+
corepack enable
66+
corepack prepare pnpm@10.20.0 --activate
6467
6568
- name: Use current npm
6669
run: npm install -g npm@11.16.0
@@ -109,14 +112,17 @@ jobs:
109112
restore-keys: |
110113
async-pipeline-${{ runner.os }}-
111114
112-
- name: Setup pnpm runtime
113-
uses: pnpm/setup@cf03a9b516e09bc5a90f041fc26fc930c9dc631b # v1.0.0
115+
- name: Setup Node
116+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
114117
with:
115-
version: 10.20.0
116-
runtime: node@24
117-
install: false
118-
cache: true
119-
cache-dependency-path: "pnpm-lock.yaml"
118+
node-version: 24
119+
registry-url: https://registry.npmjs.org/
120+
package-manager-cache: false
121+
122+
- name: Enable pnpm
123+
run: |
124+
corepack enable
125+
corepack prepare pnpm@10.20.0 --activate
120126
121127
- name: Install dependencies
122128
run: pnpm install --frozen-lockfile
@@ -161,14 +167,17 @@ jobs:
161167
restore-keys: |
162168
async-pipeline-${{ runner.os }}-
163169
164-
- name: Setup pnpm runtime
165-
uses: pnpm/setup@cf03a9b516e09bc5a90f041fc26fc930c9dc631b # v1.0.0
170+
- name: Setup Node
171+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
166172
with:
167-
version: 10.20.0
168-
runtime: node@24
169-
install: false
170-
cache: true
171-
cache-dependency-path: "pnpm-lock.yaml"
173+
node-version: 24
174+
registry-url: https://registry.npmjs.org/
175+
package-manager-cache: false
176+
177+
- name: Enable pnpm
178+
run: |
179+
corepack enable
180+
corepack prepare pnpm@10.20.0 --activate
172181
173182
- name: Install dependencies
174183
run: pnpm install --frozen-lockfile
@@ -213,14 +222,17 @@ jobs:
213222
restore-keys: |
214223
async-pipeline-${{ runner.os }}-
215224
216-
- name: Setup pnpm runtime
217-
uses: pnpm/setup@cf03a9b516e09bc5a90f041fc26fc930c9dc631b # v1.0.0
225+
- name: Setup Node
226+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
218227
with:
219-
version: 10.20.0
220-
runtime: node@24
221-
install: false
222-
cache: true
223-
cache-dependency-path: "pnpm-lock.yaml"
228+
node-version: 24
229+
registry-url: https://registry.npmjs.org/
230+
package-manager-cache: false
231+
232+
- name: Enable pnpm
233+
run: |
234+
corepack enable
235+
corepack prepare pnpm@10.20.0 --activate
224236
225237
- name: Install dependencies
226238
run: pnpm install --frozen-lockfile
@@ -262,14 +274,17 @@ jobs:
262274
restore-keys: |
263275
async-pipeline-${{ runner.os }}-
264276
265-
- name: Setup pnpm runtime
266-
uses: pnpm/setup@cf03a9b516e09bc5a90f041fc26fc930c9dc631b # v1.0.0
277+
- name: Setup Node
278+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
267279
with:
268-
version: 10.20.0
269-
runtime: node@24
270-
install: false
271-
cache: true
272-
cache-dependency-path: "pnpm-lock.yaml"
280+
node-version: 24
281+
registry-url: https://registry.npmjs.org/
282+
package-manager-cache: false
283+
284+
- name: Enable pnpm
285+
run: |
286+
corepack enable
287+
corepack prepare pnpm@10.20.0 --activate
273288
274289
- name: Install dependencies
275290
run: pnpm install --frozen-lockfile
@@ -310,14 +325,17 @@ jobs:
310325
restore-keys: |
311326
async-pipeline-${{ runner.os }}-
312327
313-
- name: Setup pnpm runtime
314-
uses: pnpm/setup@cf03a9b516e09bc5a90f041fc26fc930c9dc631b # v1.0.0
328+
- name: Setup Node
329+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
315330
with:
316-
version: 10.20.0
317-
runtime: node@24
318-
install: false
319-
cache: true
320-
cache-dependency-path: "pnpm-lock.yaml"
331+
node-version: 24
332+
registry-url: https://registry.npmjs.org/
333+
package-manager-cache: false
334+
335+
- name: Enable pnpm
336+
run: |
337+
corepack enable
338+
corepack prepare pnpm@10.20.0 --activate
321339
322340
- name: Install dependencies
323341
run: pnpm install --frozen-lockfile
@@ -389,14 +407,17 @@ jobs:
389407
restore-keys: |
390408
async-pipeline-${{ runner.os }}-
391409
392-
- name: Setup pnpm runtime
393-
uses: pnpm/setup@cf03a9b516e09bc5a90f041fc26fc930c9dc631b # v1.0.0
410+
- name: Setup Node
411+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
394412
with:
395-
version: 10.20.0
396-
runtime: node@24
397-
install: false
398-
cache: true
399-
cache-dependency-path: "pnpm-lock.yaml"
413+
node-version: 24
414+
registry-url: https://registry.npmjs.org/
415+
package-manager-cache: false
416+
417+
- name: Enable pnpm
418+
run: |
419+
corepack enable
420+
corepack prepare pnpm@10.20.0 --activate
400421
401422
- name: Install dependencies
402423
run: pnpm install --frozen-lockfile

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
},
7474
"devDependencies": {
7575
"@async/api-contract": "0.1.1",
76-
"@async/pipeline": "0.8.8",
76+
"@async/pipeline": "0.8.9",
7777
"@types/node": "24.12.4",
7878
"json5": "2.2.3",
7979
"typescript": "6.0.3"

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)