diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a91f05..5fde344 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24" cache: "npm" - name: Install dependencies @@ -36,7 +36,7 @@ jobs: - uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24" cache: "npm" - name: Install dependencies @@ -58,7 +58,7 @@ jobs: - uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24" cache: "npm" - name: Install dependencies @@ -75,7 +75,7 @@ jobs: - uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24" cache: "npm" - name: Install dependencies diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b6b4e0a..3230474 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24" registry-url: "https://registry.npmjs.org" - name: Install dependencies diff --git a/Dockerfile b/Dockerfile index 01a06ed..b242123 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22-slim as builder +FROM node:24-slim as builder WORKDIR /app @@ -10,7 +10,7 @@ COPY . . RUN npm run build -FROM node:22-slim AS final +FROM node:24-slim AS final WORKDIR /app