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 8f8719c commit 317a4b0Copy full SHA for 317a4b0
.github/actions/setup-tools/action.yml
@@ -11,9 +11,13 @@ runs:
11
using: 'composite'
12
steps:
13
- name: Install Node.js
14
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v6
15
with:
16
- node-version: 20
+ node-version: 22
17
+
18
+ - name: Update npm # To ensure npm 11.5.1 or later is installed for Trusted publishing
19
+ shell: bash
20
+ run: npm install -g npm@latest
21
22
- name: Install PNPM
23
uses: pnpm/action-setup@v3
0 commit comments