diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c44c8e0..8acd340 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: - run: corepack enable - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 - name: Install dependencies run: npx nypm@latest i @@ -33,7 +33,7 @@ jobs: - run: corepack enable - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 - name: Install dependencies run: npx nypm@latest i diff --git a/Dockerfile b/Dockerfile index f62e106..b6b362b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # https://gist.github.com/sandros94/03675514546f17af1fd6db3863c043b4 # Base configuration -ARG node_tag=22-alpine +ARG node_tag=24-alpine FROM node:${node_tag} AS base WORKDIR /app