We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 619f7d5 commit 70c80bbCopy full SHA for 70c80bb
1 file changed
.github/workflows/publish.yml
@@ -67,9 +67,13 @@ jobs:
67
# present. The npm publish step passes --registry explicitly instead.
68
uses: actions/setup-node@v6
69
with:
70
- node-version: "22"
+ node-version: "24"
71
cache: "pnpm"
72
73
+ - name: Use npm 11 for trusted publishing
74
+ # npm trusted publishing requires npm CLI 11.5.1 or newer.
75
+ run: npm install --global npm@11
76
+
77
- name: Install dependencies
78
run: pnpm install --frozen-lockfile
79
@@ -130,7 +134,7 @@ jobs:
130
134
- name: Setup Node.js (GitHub Packages registry)
131
135
132
136
133
137
138
registry-url: "https://npm.pkg.github.com"
139
scope: "@agentruntimecontrolprotocol"
140
0 commit comments