Skip to content

Commit e2bfcf7

Browse files
committed
chore(dispatch): pin pipeline preview verifier fix
1 parent 9923e00 commit e2bfcf7

5 files changed

Lines changed: 107 additions & 107 deletions

File tree

.github/workflows/async-pipeline.yml

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ jobs:
6868

6969
- name: Restore Async task cache
7070
id: async-cache-restore
71-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
71+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
7272
with:
7373
mode: restore
7474
manifest: .async/actions/cache/publish-cache-manifest.json
7575
trust: read-only
7676

7777
- name: Run pipeline task verify
78-
uses: async/actions/run@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
78+
uses: async/actions/run@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
7979
with:
8080
command: "pnpm async-pipeline github check && pnpm async-pipeline run-task verify"
8181
check-generated: false
@@ -84,47 +84,47 @@ jobs:
8484
CI: true
8585

8686
- name: Plan release package
87-
uses: async/actions/doctor@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
87+
uses: async/actions/doctor@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
8888
with:
8989
mode: plan
9090
package-path: "."
9191
evidence-dir: .async/release
92-
release-command: "pnpm dlx github:async/release#v0.1.5"
92+
release-command: "pnpm dlx github:async/release#v0.1.6"
9393
env:
9494
CI: true
9595

9696
- name: Inspect release package
97-
uses: async/actions/doctor@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
97+
uses: async/actions/doctor@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
9898
with:
9999
mode: inspect
100100
package-path: "."
101101
evidence-dir: .async/release
102-
release-command: "pnpm dlx github:async/release#v0.1.5"
102+
release-command: "pnpm dlx github:async/release#v0.1.6"
103103
env:
104104
CI: true
105105

106106
- name: Check release changelog
107-
uses: async/actions/doctor@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
107+
uses: async/actions/doctor@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
108108
with:
109109
mode: changelog
110110
package-path: "."
111111
evidence-dir: .async/release
112-
release-command: "pnpm dlx github:async/release#v0.1.5"
112+
release-command: "pnpm dlx github:async/release#v0.1.6"
113113
env:
114114
CI: true
115115

116116
- name: Render release notes
117-
uses: async/actions/doctor@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
117+
uses: async/actions/doctor@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
118118
with:
119119
mode: notes
120120
package-path: "."
121121
evidence-dir: .async/release
122-
release-command: "pnpm dlx github:async/release#v0.1.5"
122+
release-command: "pnpm dlx github:async/release#v0.1.6"
123123
env:
124124
CI: true
125125

126126
- name: Create or update GitHub Release
127-
uses: async/actions/publish@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
127+
uses: async/actions/publish@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
128128
with:
129129
package-path: "."
130130
mode: github-release
@@ -136,7 +136,7 @@ jobs:
136136
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
137137

138138
- name: Publish GitHub Packages mirror
139-
uses: async/actions/publish@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
139+
uses: async/actions/publish@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
140140
with:
141141
package-path: "."
142142
mode: github-packages
@@ -148,7 +148,7 @@ jobs:
148148
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
149149

150150
- name: Publish npm package
151-
uses: async/actions/publish@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
151+
uses: async/actions/publish@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
152152
with:
153153
package-path: "."
154154
mode: npm
@@ -161,20 +161,20 @@ jobs:
161161
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
162162

163163
- name: Run release doctor
164-
uses: async/actions/doctor@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
164+
uses: async/actions/doctor@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
165165
with:
166166
mode: doctor
167167
package-path: "."
168168
evidence-dir: .async/release
169-
release-command: "pnpm dlx github:async/release#v0.1.5"
169+
release-command: "pnpm dlx github:async/release#v0.1.6"
170170
network: live
171171
env:
172172
CI: true
173173
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
174174

175175
- name: Save Async task cache
176176
if: ${{ success() && github.event_name != 'pull_request' && steps.async-cache-restore.outputs.cache-hit != 'true' }}
177-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
177+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
178178
with:
179179
mode: save
180180
manifest: .async/actions/cache/publish-cache-manifest.json
@@ -211,27 +211,27 @@ jobs:
211211

212212
- name: Restore Async task cache
213213
id: async-cache-restore
214-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
214+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
215215
with:
216216
mode: restore
217217
manifest: .async/actions/cache/release-doctor-cache-manifest.json
218218
trust: read-only
219219

220220
- name: Run release doctor
221-
uses: async/actions/doctor@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
221+
uses: async/actions/doctor@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
222222
with:
223223
mode: doctor
224224
package-path: "."
225225
evidence-dir: .async/release
226-
release-command: "pnpm dlx github:async/release#v0.1.5"
226+
release-command: "pnpm dlx github:async/release#v0.1.6"
227227
network: live
228228
env:
229229
CI: true
230230
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
231231

232232
- name: Save Async task cache
233233
if: ${{ success() && github.event_name != 'pull_request' && steps.async-cache-restore.outputs.cache-hit != 'true' }}
234-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
234+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
235235
with:
236236
mode: save
237237
manifest: .async/actions/cache/release-doctor-cache-manifest.json
@@ -268,14 +268,14 @@ jobs:
268268

269269
- name: Restore Async task cache
270270
id: async-cache-restore
271-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
271+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
272272
with:
273273
mode: restore
274274
manifest: .async/actions/cache/snapshot-cache-manifest.json
275275
trust: read-only
276276

277277
- name: Run pipeline task verify
278-
uses: async/actions/run@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
278+
uses: async/actions/run@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
279279
with:
280280
command: "pnpm async-pipeline github check && pnpm async-pipeline run-task verify"
281281
check-generated: false
@@ -284,37 +284,37 @@ jobs:
284284
CI: true
285285

286286
- name: Plan main package preview
287-
run: pnpm dlx github:async/release#v0.1.5 preview plan --package . --mode main --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json
287+
run: pnpm dlx github:async/release#v0.1.6 preview plan --package . --mode main --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json
288288

289289
- name: Stage main package preview
290-
run: pnpm dlx github:async/release#v0.1.5 preview stage --package . --mode main --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --registry https://npm.pkg.github.com
290+
run: pnpm dlx github:async/release#v0.1.6 preview stage --package . --mode main --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --registry https://npm.pkg.github.com
291291

292292
- name: Inspect main package preview
293-
run: pnpm dlx github:async/release#v0.1.5 preview inspect --package . --mode main --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json
293+
run: pnpm dlx github:async/release#v0.1.6 preview inspect --package . --mode main --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json
294294

295295
- name: Publish main package preview
296296
id: async-main-package-preview
297-
uses: async/actions/preview@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
297+
uses: async/actions/preview@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
298298
with:
299299
package-path: "."
300300
target-registry: "https://npm.pkg.github.com"
301301
mode: main
302302
comment: false
303303
token-env-name: "GITHUB_TOKEN"
304-
release-package: "github:async/release#v0.1.5"
304+
release-package: "github:async/release#v0.1.6"
305305
env:
306306
CI: true
307307
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
308308

309309
- name: Verify main package preview
310310
if: steps.async-main-package-preview.outputs.package-spec != ''
311-
run: pnpm dlx github:async/release#v0.1.5 preview doctor --package . --mode main --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --registry https://npm.pkg.github.com --network live
311+
run: pnpm dlx github:async/release#v0.1.6 preview doctor --package . --mode main --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --registry https://npm.pkg.github.com --network live
312312
env:
313313
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
314314

315315
- name: Save Async task cache
316316
if: ${{ success() && github.event_name != 'pull_request' && steps.async-cache-restore.outputs.cache-hit != 'true' }}
317-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
317+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
318318
with:
319319
mode: save
320320
manifest: .async/actions/cache/snapshot-cache-manifest.json
@@ -348,14 +348,14 @@ jobs:
348348

349349
- name: Restore Async task cache
350350
id: async-cache-restore
351-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
351+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
352352
with:
353353
mode: restore
354354
manifest: .async/actions/cache/verify-cache-manifest.json
355355
trust: read-only
356356

357357
- name: Run pipeline job
358-
uses: async/actions/run@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
358+
uses: async/actions/run@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
359359
with:
360360
command: "pnpm async-pipeline github check && pnpm async-pipeline run verify"
361361
check-generated: false
@@ -365,7 +365,7 @@ jobs:
365365

366366
- name: Save Async task cache
367367
if: ${{ success() && github.event_name != 'pull_request' && steps.async-cache-restore.outputs.cache-hit != 'true' }}
368-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
368+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
369369
with:
370370
mode: save
371371
manifest: .async/actions/cache/verify-cache-manifest.json
@@ -399,14 +399,14 @@ jobs:
399399

400400
- name: Restore Async task cache
401401
id: async-cache-restore
402-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
402+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
403403
with:
404404
mode: restore
405405
manifest: .async/actions/cache/docs.site-cache-manifest.json
406406
trust: read-only
407407

408408
- name: Run Pages target
409-
uses: async/actions/run@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
409+
uses: async/actions/run@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
410410
with:
411411
command: "pnpm async-pipeline github check && pnpm async-pipeline run-task docs.site"
412412
check-generated: false
@@ -416,14 +416,14 @@ jobs:
416416

417417
- name: Save Async task cache
418418
if: ${{ success() && github.event_name != 'pull_request' && steps.async-cache-restore.outputs.cache-hit != 'true' }}
419-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
419+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
420420
with:
421421
mode: save
422422
manifest: .async/actions/cache/docs.site-cache-manifest.json
423423
trust: read-write
424424

425425
- name: Upload Pages artifact
426-
uses: async/actions/pages@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
426+
uses: async/actions/pages@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
427427
with:
428428
mode: static
429429
path: ".async/pages"
@@ -442,7 +442,7 @@ jobs:
442442
steps:
443443
- name: Deploy to GitHub Pages
444444
id: deployment
445-
uses: async/actions/pages@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
445+
uses: async/actions/pages@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
446446
with:
447447
upload: false
448448
deploy: true
@@ -482,14 +482,14 @@ jobs:
482482

483483
- name: Restore Async task cache
484484
id: async-cache-restore
485-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
485+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
486486
with:
487487
mode: restore
488488
manifest: .async/actions/cache/package-preview-cache-manifest.json
489489
trust: read-only
490490

491491
- name: Run package preview target
492-
uses: async/actions/run@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
492+
uses: async/actions/run@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
493493
with:
494494
command: "pnpm async-pipeline github check && pnpm async-pipeline run-task build"
495495
check-generated: false
@@ -499,44 +499,44 @@ jobs:
499499

500500
- name: Save Async task cache
501501
if: ${{ success() && github.event_name != 'pull_request' && steps.async-cache-restore.outputs.cache-hit != 'true' }}
502-
uses: async/actions/cache@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
502+
uses: async/actions/cache@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
503503
with:
504504
mode: save
505505
manifest: .async/actions/cache/package-preview-cache-manifest.json
506506
trust: read-write
507507

508508
- name: Plan PR package preview
509-
run: pnpm dlx github:async/release#v0.1.5 preview plan --package . --mode pr --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --pr-number "${{ github.event.pull_request.number }}" --head-sha "${{ github.event.pull_request.head.sha }}"
509+
run: pnpm dlx github:async/release#v0.1.6 preview plan --package . --mode pr --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --pr-number "${{ github.event.pull_request.number }}" --head-sha "${{ github.event.pull_request.head.sha }}"
510510

511511
- name: Stage PR package preview
512-
run: pnpm dlx github:async/release#v0.1.5 preview stage --package . --mode pr --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --registry https://npm.pkg.github.com --pr-number "${{ github.event.pull_request.number }}" --head-sha "${{ github.event.pull_request.head.sha }}"
512+
run: pnpm dlx github:async/release#v0.1.6 preview stage --package . --mode pr --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --registry https://npm.pkg.github.com --pr-number "${{ github.event.pull_request.number }}" --head-sha "${{ github.event.pull_request.head.sha }}"
513513

514514
- name: Inspect PR package preview
515-
run: pnpm dlx github:async/release#v0.1.5 preview inspect --package . --mode pr --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --pr-number "${{ github.event.pull_request.number }}" --head-sha "${{ github.event.pull_request.head.sha }}"
515+
run: pnpm dlx github:async/release#v0.1.6 preview inspect --package . --mode pr --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --pr-number "${{ github.event.pull_request.number }}" --head-sha "${{ github.event.pull_request.head.sha }}"
516516

517517
- name: Publish package preview
518518
id: async-package-preview
519-
uses: async/actions/preview@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
519+
uses: async/actions/preview@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
520520
with:
521521
package-path: "."
522522
target-registry: "https://npm.pkg.github.com"
523523
mode: pr
524524
comment: true
525525
token-env-name: "GITHUB_TOKEN"
526-
release-package: "github:async/release#v0.1.5"
526+
release-package: "github:async/release#v0.1.6"
527527
env:
528528
CI: true
529529
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
530530

531531
- name: Verify PR package preview
532532
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && steps.async-package-preview.outputs.package-spec != ''
533-
run: pnpm dlx github:async/release#v0.1.5 preview doctor --package . --mode pr --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --registry https://npm.pkg.github.com --network live --pr-number "${{ github.event.pull_request.number }}" --head-sha "${{ github.event.pull_request.head.sha }}"
533+
run: pnpm dlx github:async/release#v0.1.6 preview doctor --package . --mode pr --namespace "${{ github.repository_owner }}" --source-repository "${{ github.repository }}" --source-sha "${{ github.sha }}" --evidence-dir .async/release --json --registry https://npm.pkg.github.com --network live --pr-number "${{ github.event.pull_request.number }}" --head-sha "${{ github.event.pull_request.head.sha }}"
534534
env:
535535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
536536

537537
- name: Comment package preview
538538
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && steps.async-package-preview.outputs.comment-body != ''
539-
uses: async/actions/comment@ae78d0fe7cc4bb00907c275bc7bab4317a02fe17 # v0.1.23
539+
uses: async/actions/comment@ff415041176eaffaa2ba19363fe371188f52ee1f # v0.1.24
540540
with:
541541
mode: pr-comment
542542
repository: ${{ github.repository }}

0 commit comments

Comments
 (0)