File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -136,8 +136,12 @@ jobs:
136136
137137 - uses : actions/setup-node@v6
138138 with :
139- node-version-file : ' .nvmrc'
140- registry-url : ' https://registry.npmjs.org'
139+ node-version-file : .nvmrc
140+
141+ - name : Upgrade to latest npm
142+ run : |
143+ npm install -g npm@latest
144+ npm -v
141145
142146 - name : Install deps
143147 run : npm ci --audit=false
@@ -151,7 +155,6 @@ jobs:
151155 if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
152156 env :
153157 GITHUB_TOKEN : ${{ steps.generate_token.outputs.token }}
154- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
155158 SEMANTIC_RELEASE_PACKAGE : ${{ github.event.repository.name }}
156159 GIT_AUTHOR_EMAIL : " ${{ steps.bot-user-id.outputs.user-id }}+${{ steps.generate_token.outputs.app-slug }}[bot]@users.noreply.github.com"
157160 GIT_COMMITTER_EMAIL : " ${{ steps.bot-user-id.outputs.user-id }}+${{ steps.generate_token.outputs.app-slug }}[bot]@users.noreply.github.com"
You can’t perform that action at this time.
0 commit comments