We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66f1224 commit 4fa6521Copy full SHA for 4fa6521
1 file changed
.github/workflows/npm-publish.yml
@@ -19,10 +19,14 @@ jobs:
19
- name: Setup Node.js
20
uses: actions/setup-node@v4
21
with:
22
- node-version: '20' # Use Node 20 LTS
+ node-version: '22' # Node 22 for npm 11.5.1+ (required for OIDC)
23
registry-url: 'https://registry.npmjs.org'
24
cache: 'npm'
25
- always-auth: true
+
26
+ - name: Upgrade npm for OIDC support
27
+ run: |
28
+ npm install -g npm@latest
29
+ npm --version
30
31
- name: Install dependencies
32
run: npm ci
0 commit comments