From 337f21084421e8fb42a0e14ba56125d1ef67bf91 Mon Sep 17 00:00:00 2001 From: Phi Date: Tue, 21 Jul 2026 17:11:36 +0200 Subject: [PATCH 1/2] ci: restore pnpm action setup --- .github/workflows/ci_run.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci_run.yml b/.github/workflows/ci_run.yml index 6574c45..29c9e42 100644 --- a/.github/workflows/ci_run.yml +++ b/.github/workflows/ci_run.yml @@ -368,13 +368,9 @@ jobs: # Setup pnpm (required by scenario tests) - name: "EXEC: {Setup pnpm}, independent" if: steps.start_cluster.outcome == 'success' - # TEMPORARY work-around pending solution to https://github.com/pnpm/action-setup/issues/276. - # Bypass pnpm/action-setup's broken 11.7.0 -> 11.12.0 self-update and - # the incomplete @pnpm/exe 11.12.0 platform packages. Node is set up - # above, so install the regular Node-based pnpm package directly. - run: | - npm install --global pnpm@11.12.0 - test "$(pnpm --version)" = "11.12.0" + uses: pnpm/action-setup@v6 + with: + version: 11.13.1 # Validate schema using zod - name: "CHECK: {Validate devnet-info.json schema}" From d36ed1b0a09868cd026cd6248aa6515fe3ddbf44 Mon Sep 17 00:00:00 2001 From: Phi Date: Tue, 21 Jul 2026 17:16:38 +0200 Subject: [PATCH 2/2] ci: track latest pnpm release --- .github/workflows/ci_run.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_run.yml b/.github/workflows/ci_run.yml index 29c9e42..4931e1a 100644 --- a/.github/workflows/ci_run.yml +++ b/.github/workflows/ci_run.yml @@ -370,7 +370,7 @@ jobs: if: steps.start_cluster.outcome == 'success' uses: pnpm/action-setup@v6 with: - version: 11.13.1 + version: latest # Validate schema using zod - name: "CHECK: {Validate devnet-info.json schema}"