Skip to content

Commit 3c78f63

Browse files
authored
fix: remove explicit registry from npm publish workflows (#270)
1 parent e0f6df3 commit 3c78f63

7 files changed

Lines changed: 10 additions & 13 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

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@trustify-da/trustify-da-javascript-client",
3-
"version": "0.2.4-ea.12",
3+
"version": "0.2.4-ea.13",
44
"description": "Code-Ready Dependency Analytics JavaScript API.",
55
"license": "Apache-2.0",
66
"homepage": "https://github.com/guacsec/trustify-da-javascript-client#README.md",

0 commit comments

Comments
 (0)