diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bccb18f..d48dff3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # 4.0.1 with: - node-version: v20.10.0 + node-version: v20.11.1 - name: Install Dependencies, Test, and Build run: | yarn install --frozen-lockfile --check-files --network-timeout 600000 diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index d041758..a52dcdf 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -17,7 +17,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # 4.0.1 with: - node-version: v20.10.0 + node-version: v20.11.1 - name: Install Dependencies, Test, and Build run: | yarn install --frozen-lockfile --check-files --network-timeout 600000 diff --git a/.nvmrc b/.nvmrc index 790e110..ee09fac 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v20.10.0 +v20.11.1 diff --git a/Dockerfile b/Dockerfile index 3ea8fad..ceaea3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.10.0-alpine AS node-build +FROM node:20.11.1-alpine AS node-build WORKDIR /usr/src/app COPY package.json ./ COPY yarn.lock ./ @@ -8,7 +8,7 @@ RUN yarn install --frozen-lockfile --check-files --network-timeout 600000 RUN yarn build --noninteractive RUN yarn install --frozen-lockfile --check-files --production --modules-folder node_modules_prod --network-timeout 600000 -FROM node:20.10.0-alpine +FROM node:20.11.1-alpine WORKDIR /usr/src/app ENV NODE_ENV production RUN mkdir -p /node_modules