Skip to content

Commit 2b7ace9

Browse files
committed
fix: remove explicit registry from npm publish workflows
1 parent e0f6df3 commit 2b7ace9

5 files changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/pr-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fetch-depth: 0
2828

2929
- name: Set up Node.js
30-
uses: actions/setup-node@v4
30+
uses: actions/setup-node@v5
3131
with:
3232
node-version: 20
3333

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@v4
2727

2828
- name: Install node ${{ matrix.node }}
29-
uses: actions/setup-node@v4
29+
uses: actions/setup-node@v5
3030
with:
3131
node-version: ${{ matrix.node }}
3232
cache: npm

.github/workflows/publish-prerelease.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,10 @@ jobs:
2626
fetch-depth: 0
2727

2828
- name: Install node 20
29-
uses: actions/setup-node@v4
29+
uses: actions/setup-node@v5
3030
with:
3131
node-version: 20
3232
cache: npm
33-
registry-url: 'https://registry.npmjs.org'
3433

3534
- name: Update npm
3635
run: npm install -g npm@11.5.1

.github/workflows/publish-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,10 @@ jobs:
3030
fetch-depth: 0
3131

3232
- name: Install node 20
33-
uses: actions/setup-node@v4
33+
uses: actions/setup-node@v5
3434
with:
3535
node-version: 20
3636
cache: npm
37-
registry-url: 'https://registry.npmjs.org'
3837

3938
- name: Update npm
4039
run: npm install -g npm@11.5.1

.github/workflows/stage.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,10 @@ jobs:
3737
fetch-depth: 0
3838

3939
- name: Install node 20
40-
uses: actions/setup-node@v4
40+
uses: actions/setup-node@v5
4141
with:
4242
node-version: 20
4343
cache: npm
44-
registry-url: 'https://registry.npmjs.org'
4544

4645
- name: Update npm
4746
run: npm install -g npm@11.5.1

0 commit comments

Comments
 (0)