From cc5beac6b00fd33623af2f33215edf5d95cdc95b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 15:56:18 +0000 Subject: [PATCH] chore(deps): update dependency node to v24 --- .github/workflows/deploy.yml | 2 +- .github/workflows/test.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e9af53e..640f584 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 - uses: actions/setup-node@v6 with: - node-version: 22 + node-version: 24 cache: npm - run: npm ci - uses: aws-actions/setup-sam@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a4aaae4..ef44a94 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,6 @@ jobs: - uses: actions/setup-node@v6 with: cache: npm - node-version: 22 + node-version: 24 - run: npm ci - run: npm test diff --git a/Dockerfile b/Dockerfile index 3c002e9..3fd8056 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22-slim +FROM node:24-slim WORKDIR /usr/src/app COPY package.json package-lock.json ./ RUN npm ci --production