Skip to content

Commit 0ac4972

Browse files
committed
chore(ci/build): updated node version
1 parent 707b50f commit 0ac4972

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/build-application.yml

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

1515
strategy:
1616
matrix:
17-
node-version: [20.x]
17+
node-version: [24.x]
1818

1919
steps:
2020
- name: Checkout Repository

.github/workflows/releasing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
node-version: [20.x]
22+
node-version: [24.x]
2323

2424
steps:
2525
- name: Checkout Repository
@@ -67,7 +67,7 @@ jobs:
6767

6868
strategy:
6969
matrix:
70-
node-version: [20.x]
70+
node-version: [24.x]
7171

7272
permissions:
7373
contents: write

.github/workflows/sonar.yml

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

2222
strategy:
2323
matrix:
24-
node-version: [20.x]
24+
node-version: [24.x]
2525

2626
steps:
2727
- name: Checkout Repository

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM node:20.19.2-slim AS build
2+
FROM node:24.2.0-slim AS build
33

44
LABEL name="Node Back-End Boilerplate Image"
55
LABEL description="Docker Image for Node.js Back-End Boilerplate"
@@ -30,7 +30,7 @@ RUN mkdir -p docs temp
3030
RUN chmod +x init.sh
3131
RUN npm run build
3232

33-
FROM node:20.19.2-slim AS prod
33+
FROM node:24.2.0-slim AS prod
3434

3535
ENV CI="true"
3636
ENV NODE_ENV="prod"

infra/docker/Dockerfile.prod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM node:20.19.2-slim AS build
2+
FROM node:24.2.0-slim AS build
33

44
LABEL name="Node Back-End Boilerplate Image"
55
LABEL description="Docker Image for Node.js Back-End Boilerplate"
@@ -30,7 +30,7 @@ RUN mkdir -p docs temp
3030
RUN chmod +x init.sh
3131
RUN npm run build
3232

33-
FROM node:20.19.2-slim AS prod
33+
FROM node:24.2.0-slim AS prod
3434

3535
ENV CI="true"
3636
ENV NODE_ENV="prod"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "node_backend_boilerplate",
4-
"version": "6.4.1",
4+
"version": "7.0.0",
55
"description": "Node.js Boilerplate for Back-End using TypeScript",
66
"license": "MIT",
77
"private": false,

0 commit comments

Comments
 (0)