Skip to content

Commit a8947aa

Browse files
committed
chore(deps): update node version to 20.9.0
BREAKING CHANGE: action now runs on Node 20.9.0
1 parent 6319f54 commit a8947aa

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: '16.5.0'
14+
node-version: '20.9.0'
1515
- uses: actions/cache@v3
1616
with:
1717
path: |
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v3
3939
- uses: actions/setup-node@v3
4040
with:
41-
node-version: '16.5.0'
41+
node-version: '20.9.0'
4242
- uses: actions/cache@v3
4343
with:
4444
path: |

.github/workflows/commitlint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- run: echo -n '' > .dockerignore
1111
- uses: actions/setup-node@v3
1212
with:
13-
node-version: '16.5.0'
13+
node-version: '20.9.0'
1414
- uses: actions/cache@v3
1515
with:
1616
path: |
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v3
3434
- uses: actions/setup-node@v3
3535
with:
36-
node-version: '16.5.0'
36+
node-version: '20.9.0'
3737
- uses: actions/cache@v3
3838
with:
3939
path: |

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.5.0
1+
20.9.0

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ COPY . .
88

99
RUN npm run build
1010

11-
FROM node:16.5.0-alpine3.14
11+
FROM node:20.9.0-alpine3.17
1212

1313
RUN apk --no-cache add git
1414

babel.config.json

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

0 commit comments

Comments
 (0)