From 4add01925d6313f91195e006d9957b2c52c1aa6a Mon Sep 17 00:00:00 2001 From: Subhankar Maiti Date: Mon, 8 Dec 2025 14:26:41 +0530 Subject: [PATCH] fix: add npm 11 installation step for OIDC support --- .github/actions/setup/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 47853c58..2d8461b7 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -10,6 +10,10 @@ runs: node-version-file: .nvmrc registry-url: 'https://registry.npmjs.org' + - name: Install npm 11 # required to use npm OIDC + shell: bash + run: npm install -g npm@11 + - name: Restore dependencies id: yarn-cache uses: actions/cache/restore@v4