From fcf21468c28a7e2be8df2213df7f37a2d2cfe140 Mon Sep 17 00:00:00 2001 From: CSantosM <4a.santos@gmail.com> Date: Tue, 24 Feb 2026 11:01:40 +0100 Subject: [PATCH] Updated to Node.js v24.13.1 --- .github/workflows/.copilot-instructions.md | 4 ++-- .github/workflows/backend-integration-test.yaml | 4 ++-- .github/workflows/backend-unit-test.yaml | 2 +- .github/workflows/wc-e2e-test.yaml | 2 +- .github/workflows/wc-unit-test.yaml | 2 +- meet-ce/docker/Dockerfile | 4 ++-- meet-demo/deployment/Dockerfile | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/.copilot-instructions.md b/.github/workflows/.copilot-instructions.md index a813a375..f19af5c5 100644 --- a/.github/workflows/.copilot-instructions.md +++ b/.github/workflows/.copilot-instructions.md @@ -183,9 +183,9 @@ sed -i 's/workspace:\*/3.5.0/g' package.json ### 4. **Docker Best Practices** ```dockerfile # ✅ Good: Multi-stage build -FROM node:22.19.0 AS builder +FROM node:24.13.1 AS builder # ... build stage ... -FROM node:22.19.0-alpine AS runner +FROM node:24.13.1-alpine AS runner # ... runtime stage ... # ✅ Good: Use build args diff --git a/.github/workflows/backend-integration-test.yaml b/.github/workflows/backend-integration-test.yaml index ec08754d..8fe59753 100644 --- a/.github/workflows/backend-integration-test.yaml +++ b/.github/workflows/backend-integration-test.yaml @@ -53,7 +53,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v5 with: - node-version: '22.13' + node-version: '24.13.1' - name: Setup pnpm uses: pnpm/action-setup@v4 with: @@ -191,7 +191,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v5 with: - node-version: '22.13' + node-version: '24.13.1' - name: Setup pnpm uses: pnpm/action-setup@v2 with: diff --git a/.github/workflows/backend-unit-test.yaml b/.github/workflows/backend-unit-test.yaml index 1c43fb20..af3a86e1 100644 --- a/.github/workflows/backend-unit-test.yaml +++ b/.github/workflows/backend-unit-test.yaml @@ -12,7 +12,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v5 with: - node-version: '22.13' + node-version: '24.13.1' - name: Setup pnpm uses: pnpm/action-setup@v4 with: diff --git a/.github/workflows/wc-e2e-test.yaml b/.github/workflows/wc-e2e-test.yaml index bb9a8e80..a9fc3a09 100644 --- a/.github/workflows/wc-e2e-test.yaml +++ b/.github/workflows/wc-e2e-test.yaml @@ -12,7 +12,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v5 with: - node-version: '22.13' + node-version: '24.13.1' - name: Setup pnpm uses: pnpm/action-setup@v4 with: diff --git a/.github/workflows/wc-unit-test.yaml b/.github/workflows/wc-unit-test.yaml index 79544c4b..b2742844 100644 --- a/.github/workflows/wc-unit-test.yaml +++ b/.github/workflows/wc-unit-test.yaml @@ -12,7 +12,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v5 with: - node-version: '22.13' + node-version: '24.13.1' - name: Setup pnpm uses: pnpm/action-setup@v4 with: diff --git a/meet-ce/docker/Dockerfile b/meet-ce/docker/Dockerfile index de5407dc..b68f6c6e 100644 --- a/meet-ce/docker/Dockerfile +++ b/meet-ce/docker/Dockerfile @@ -1,7 +1,7 @@ # ==================================================== # Stage 1: builder # ==================================================== -FROM node:22.21.1 AS builder +FROM node:24.13.1 AS builder # Define pnpm version as build argument with default value ARG PNPM_VERSION=10.18.3 @@ -75,7 +75,7 @@ RUN rm -rf node_modules \ # ==================================================== # Stage 2: production # ==================================================== -FROM node:22.21.1-alpine3.23 AS production +FROM node:24.13.1-alpine AS production # Define pnpm version as build argument with default value ARG PNPM_VERSION=10.18.3 diff --git a/meet-demo/deployment/Dockerfile b/meet-demo/deployment/Dockerfile index 4b6adbbd..99e8de07 100644 --- a/meet-demo/deployment/Dockerfile +++ b/meet-demo/deployment/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22-alpine +FROM node:24.13.1-alpine # Install tzdata package for timezone data RUN apk add --no-cache tzdata