From ab60ae4c6b6dc427b2af0ccdb65094a1352e1591 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 25 Nov 2025 11:59:46 +0100 Subject: [PATCH] ci: use corepack pnpm with setup-node 22 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 688d7dd07..6e258a182 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,15 +17,15 @@ jobs: node-version: 22 check-latest: true - - name: Setup pnpm - uses: pnpm/action-setup@v4 - with: - version: 10.23.0 - - name: Node version run: | node -v npm -v + + - name: Enable corepack and pin pnpm + run: | + corepack enable + corepack prepare pnpm@10.23.0 --activate pnpm -v - name: Install dependencies