Skip to content

Commit 310ec1e

Browse files
authored
Merge pull request #796 from Jayllyz/build/bump-node-lts
build: update node.js version to 20.16.0
2 parents 7f0a61d + 3265b23 commit 310ec1e

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
- uses: actions/setup-node@v3
12+
- uses: actions/setup-node@v4
1313
with:
14-
node-version: '20.9.0'
14+
node-version: '20.16.0'
1515
- uses: actions/cache@v3
1616
with:
1717
path: |
@@ -38,9 +38,9 @@ jobs:
3838
- uses: actions/checkout@v3
3939
with:
4040
fetch-depth: 0
41-
- uses: actions/setup-node@v3
41+
- uses: actions/setup-node@v4
4242
with:
43-
node-version: '20.9.0'
43+
node-version: '20.16.0'
4444
- uses: actions/cache@v3
4545
with:
4646
path: |

.github/workflows/commitlint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
- uses: actions/checkout@v3
99
- run: sed -i -E "s/(docker:.+)/Dockerfile/" ./action.yml
1010
- run: echo -n '' > .dockerignore
11-
- uses: actions/setup-node@v3
11+
- uses: actions/setup-node@v4
1212
with:
13-
node-version: '20.9.0'
13+
node-version: '20.16.0'
1414
- uses: actions/cache@v3
1515
with:
1616
path: |
@@ -31,9 +31,9 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- uses: actions/checkout@v3
34-
- uses: actions/setup-node@v3
34+
- uses: actions/setup-node@v4
3535
with:
36-
node-version: '20.9.0'
36+
node-version: '20.16.0'
3737
- uses: actions/cache@v3
3838
with:
3939
path: |

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.9.0
1+
20.16.0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20.9.0-alpine3.17 as build
1+
FROM node:20.16.0-alpine3.20 as build
22

33
COPY package*.json /
44

@@ -8,7 +8,7 @@ COPY . .
88

99
RUN npm run build
1010

11-
FROM node:20.9.0-alpine3.17
11+
FROM node:20.16.0-alpine3.20
1212

1313
RUN apk --no-cache add git
1414

babel.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"presets": [["@babel/preset-env"]],
33
"targets": {
4-
"node": "20.9.0"
4+
"node": "20.16.0"
55
}
66
}

package-lock.json

Lines changed: 1 addition & 1 deletion
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
@@ -12,7 +12,7 @@
1212
"build": "rollup -c"
1313
},
1414
"engines": {
15-
"node": "20.9.0"
15+
"node": "20.16.0"
1616
},
1717
"repository": {
1818
"type": "git",

0 commit comments

Comments
 (0)