diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 6ec69381..7e6f2f95 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -11,7 +11,7 @@ runs: - name: Setup Node.js uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 with: - node-version: 22 + node-version: 24 cache: pnpm - name: Install dependencies diff --git a/Dockerfile b/Dockerfile index 1009418e..dc1ec94d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22-alpine AS base +FROM node:24-alpine AS base # Install dependencies only when needed FROM base AS deps