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
This commit is contained in:
Philip H 2024-02-19 18:05:54 +01:00 committed by GitHub
parent a0f0d03641
commit e86e0da99b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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

2
.nvmrc
View File

@ -1 +1 @@
v20.10.0
v20.11.1

View File

@ -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