Skip to content

Commit 38c325f

Browse files
committed
chore: upgrade to Node 16
1 parent 26cdd3d commit 38c325f

File tree

6 files changed

+8878
-29
lines changed

6 files changed

+8878
-29
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- uses: actions/setup-node@v3
1818
with:
19-
node-version: "14"
19+
node-version: "16"
2020

2121
- run: |
2222
npm clean-install

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- uses: actions/setup-node@v3
1717
with:
18-
node-version: "14"
18+
node-version: "16"
1919

2020
- run: |
2121
npm clean-install

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- uses: actions/setup-node@v3
4545
with:
46-
node-version: "14"
46+
node-version: "16"
4747

4848
- name: Prepare release
4949
run: |

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:14 as build
1+
FROM node:16 as build
22
WORKDIR /usr/src/app
33
# Do `npm ci` separately so we can cache `node_modules`
44
# https://nodejs.org/en/docs/guides/nodejs-docker-webapp/
@@ -7,7 +7,7 @@ RUN npm clean-install
77
COPY . .
88
RUN npm run build:server
99

10-
FROM node:14-slim
10+
FROM node:16-slim
1111
WORKDIR /usr/src/app
1212
COPY --from=build /usr/src/app/node_modules node_modules
1313
COPY --from=build /usr/src/app/bin bin

0 commit comments

Comments
 (0)