From 414adb5a7118ad328d95957e281a91d7a076f4cd Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Mon, 3 Feb 2025 11:48:02 +0900 Subject: [PATCH] chore: workaround for npm registry key change --- .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 8cdd38ef..c0feea2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,11 +18,11 @@ jobs: steps: - uses: actions/checkout@v4 - - run: corepack enable - - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: pnpm + # workaround for npm registry key change + # ref. `pnpm@10.1.0` / `pnpm@9.15.4` cannot be installed due to key id mismatch · Issue #612 · nodejs/corepack + # - https://github.com/nodejs/corepack/issues/612#issuecomment-2629496091 + - run: npm i -g corepack@latest && corepack enable + - uses: actions/setup-node@v4.1.0 - name: 📦 Install dependencies run: pnpm install --frozen-lockfile