Skip to content

Commit ddf8636

Browse files
committed
ci: upgrade node, setup-node.
1 parent c893766 commit ddf8636

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
uses: actions/checkout@v4
1616

1717
- name: Set up Node.js
18-
uses: actions/setup-node@v2
18+
uses: actions/setup-node@v4
1919
with:
20-
node-version: "18"
20+
node-version: "20.x"
2121

2222
- name: Install and Build
2323
run: npm install && npm run build:web

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- uses: actions/checkout@v4
1010
# Setup .npmrc file to publish to npm
11-
- uses: actions/setup-node@v3
11+
- uses: actions/setup-node@v4
1212
with:
1313
node-version: "20.x"
1414
registry-url: "https://registry.npmjs.org"

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818

19-
- uses: actions/setup-node@v3
19+
- uses: actions/setup-node@v4
2020
with:
21-
node-version: 18.x
21+
node-version: "20.x"
2222

2323
- run: npx changelogithub # or [email protected] if ensure the stable result
2424
env:

0 commit comments

Comments
 (0)