diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3b3c4297..71154384 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -22,7 +22,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v6.4.0 with: - node-version: "24.17.0" + node-version: "24.19.0" cache: "npm" cache-dependency-path: "**/package-lock.json" diff --git a/Dockerfile b/Dockerfile index 20f06021..e03d56f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.17.0-alpine AS dependencies +FROM node:24.19.0-alpine AS dependencies # Set working directory WORKDIR /app @@ -10,7 +10,7 @@ COPY package.json package-lock.json* ./ RUN --mount=type=cache,target=/root/.npm \ npm ci --prefer-offline --no-audit --no-fund; -FROM node:24.17.0-alpine AS builder +FROM node:24.19.0-alpine AS builder # Set working directory WORKDIR /app