diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 80d6a04..7c8b02e 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -78,7 +78,7 @@ jobs: cache-to: type=inline - uses: actions/setup-node@v7.0.0 with: - node-version: "22" + node-version: "24" build-backend: name: build-backend @@ -128,4 +128,4 @@ jobs: cache-to: type=inline - uses: actions/setup-node@v7.0.0 with: - node-version: "22" + node-version: "24" diff --git a/.github/workflows/ci-release.yaml b/.github/workflows/ci-release.yaml index 18be1e0..fc0d16a 100644 --- a/.github/workflows/ci-release.yaml +++ b/.github/workflows/ci-release.yaml @@ -74,7 +74,7 @@ jobs: cache-to: type=inline - uses: actions/setup-node@v7.0.0 with: - node-version: "22" + node-version: "24" build-backend: name: build-backend @@ -125,7 +125,7 @@ jobs: cache-to: type=inline - uses: actions/setup-node@v7.0.0 with: - node-version: "22" + node-version: "24" release: name: Release needs: [build-frontend, build-backend] @@ -147,7 +147,7 @@ jobs: owner: ${{ github.repository_owner }} - uses: actions/setup-node@v7.0.0 with: - node-version: "22" + node-version: "24" - name: Semantic Release id: version uses: splunk/semantic-release-action@v1.3.10 diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 47785a4..0b4bebd 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22-alpine AS build-step +FROM node:24-alpine AS build-step WORKDIR /frontend ENV PATH=/frontend/node_modules/.bin:$PATH COPY package.json yarn.lock lerna.json ./