Skip to content
This repository was archived by the owner on Feb 15, 2026. It is now read-only.

Commit b0a15d3

Browse files
authored
fix: update to node 20.x.x (#4340)
1 parent ccf45eb commit b0a15d3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Node.js
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 16
20+
node-version: 20
2121
- name: Set up QEMU
2222
uses: docker/setup-qemu-action@v2
2323
- name: Set up Docker Buildx

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18.18.2-alpine AS BUILD_IMAGE
1+
FROM node:20-alpine AS BUILD_IMAGE
22

33
WORKDIR /app
44

@@ -34,7 +34,7 @@ RUN touch config/DOCKER
3434
RUN echo "{\"commitTag\": \"${COMMIT_TAG}\"}" > committag.json
3535

3636

37-
FROM node:18.18.2-alpine
37+
FROM node:20-alpine
3838

3939
WORKDIR /app
4040

Dockerfile.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18.18.2-alpine
1+
FROM node:20-alpine
22

33
COPY . /app
44
WORKDIR /app

0 commit comments

Comments
 (0)