Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -128,4 +128,4 @@ jobs:
cache-to: type=inline
- uses: actions/setup-node@v7.0.0
with:
node-version: "22"
node-version: "24"
6 changes: 3 additions & 3 deletions .github/workflows/ci-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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]
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 ./
Expand Down
Loading