diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1defa4186..93e131a3c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: - name: Use Node.js 22.x uses: actions/setup-node@v7 with: - node-version: 22.x + node-version: 24.x cache: 'npm' - run: npm ci - run: make lint-ui @@ -61,7 +61,7 @@ jobs: - name: Use Node.js 22.x uses: actions/setup-node@v7 with: - node-version: 22.x + node-version: 24.x cache: 'npm' - run: npm ci # required for esbuild - name: install golangci-lint @@ -134,7 +134,7 @@ jobs: - name: Use Node.js 22.x uses: actions/setup-node@v7 with: - node-version: 22.x + node-version: 24.x cache: 'npm' - uses: actions/download-artifact@v8 with: @@ -189,7 +189,7 @@ jobs: - name: Use Node.js 22.x uses: actions/setup-node@v7 with: - node-version: 22.x + node-version: 24.x cache: 'npm' - uses: actions/download-artifact@v8 with: diff --git a/Dockerfile b/Dockerfile index 8d52037a3..8b7045be5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN --mount=type=cache,target=/go/pkg/mod \ ################# ### UI Build Step ################# -FROM --platform=${TARGETPLATFORM:-linux/amd64} node:22-bookworm AS ui-builder +FROM --platform=${TARGETPLATFORM:-linux/amd64} node:24-bookworm AS ui-builder WORKDIR /ui