Skip to content

Commit 123ba36

Browse files
committed
Node -> 24
1 parent 2cdc3e8 commit 123ba36

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/cypress.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [18.x]
18+
node-version: [24.x]
1919

2020
services:
2121
postgres:

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [18.x]
16+
node-version: [24.x]
1717

1818
services:
1919
postgres:

.github/workflows/pgrita.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [18.x]
11+
node-version: [24.x]
1212

1313
services:
1414
postgres:

.github/workflows/production-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [18.x]
11+
node-version: [24.x]
1212

1313
services:
1414
postgres:

.github/workflows/windows-nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
git config --global core.eol lf
2121
- name: Checkout
2222
uses: actions/checkout@v2
23-
- name: Use Node.js 18
23+
- name: Use Node.js 24
2424
uses: actions/setup-node@v1
2525
with:
26-
node-version: "18"
26+
node-version: "24"
2727
- name: Start Postgres 14
2828
run: |
2929
sc config postgresql-x64-14 start=auto

production.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ARG TARGET="server"
77
################################################################################
88
# Build stage 1 - `yarn build`
99

10-
FROM node:18-alpine as builder
10+
FROM node:24-alpine as builder
1111
# Import our shared args
1212
ARG NODE_ENV
1313
ARG ROOT_URL
@@ -30,7 +30,7 @@ RUN yarn run build
3030
################################################################################
3131
# Build stage 2 - COPY the relevant things (multiple steps)
3232

33-
FROM node:18-alpine as clean
33+
FROM node:24-alpine as clean
3434
# Import our shared args
3535
ARG NODE_ENV
3636
ARG ROOT_URL
@@ -67,7 +67,7 @@ RUN rm -Rf /app/node_modules /app/@app/*/node_modules
6767
################################################################################
6868
# Build stage FINAL - COPY everything, once, and then do a clean `yarn install`
6969

70-
FROM node:18-alpine
70+
FROM node:24-alpine
7171

7272
EXPOSE $PORT
7373
WORKDIR /app/

0 commit comments

Comments
 (0)