From e86e0da99b31c9020341025b0c21298ec630a691 Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Mon, 19 Feb 2024 18:05:54 +0100 Subject: [PATCH] nodejs 20.11.1 (#568) * nodejs 20.11.1 * add missing node-20.11.1 bump * update .nvmrc and revert yarn.lock changes * CI: bump to nodejs 20.11.1 --- .github/workflows/main.yml | 2 +- .github/workflows/pull-request.yml | 2 +- .nvmrc | 2 +- Dockerfile | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) 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