We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9999f4 commit 6f72c43Copy full SHA for 6f72c43
.github/workflows/release.yml
@@ -60,9 +60,15 @@ jobs:
60
- name: Set up Node.js
61
uses: actions/setup-node@v4
62
with:
63
- node-version: '22' # Node 22+ includes npm >= 11.5.1 required for OIDC
+ node-version: '22'
64
registry-url: 'https://registry.npmjs.org'
65
66
+ - name: Upgrade npm for OIDC support
67
+ run: npm install -g npm@latest # npm >= 11.5.1 required for OIDC
68
+
69
+ - name: Verify npm version
70
+ run: npm --version
71
72
- name: Install dependencies
73
run: |
74
cd nodejs-api
0 commit comments