Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
8 changes: 4 additions & 4 deletions .github/workflows/platform-frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: "22.18.0"
node-version: "24.18.0"
cache: "pnpm"
cache-dependency-path: autogpt_platform/frontend/pnpm-lock.yaml

Expand All @@ -77,7 +77,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: "22.18.0"
node-version: "24.18.0"
cache: "pnpm"
cache-dependency-path: autogpt_platform/frontend/pnpm-lock.yaml

Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: "22.18.0"
node-version: "24.18.0"
cache: "pnpm"
cache-dependency-path: autogpt_platform/frontend/pnpm-lock.yaml

Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: "22.18.0"
node-version: "24.18.0"
cache: "pnpm"
cache-dependency-path: autogpt_platform/frontend/pnpm-lock.yaml

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/platform-fullstack-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: "22.18.0"
node-version: "24.18.0"
cache: "pnpm"
cache-dependency-path: autogpt_platform/frontend/pnpm-lock.yaml

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Set up Frontend - Set up Node
uses: actions/setup-node@v6
with:
node-version: "22.18.0"
node-version: "24.18.0"
cache: "pnpm"
cache-dependency-path: autogpt_platform/frontend/pnpm-lock.yaml

Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
- name: Set up tests - Set up Node
uses: actions/setup-node@v6
with:
node-version: "22.18.0"
node-version: "24.18.0"
cache: "pnpm"
cache-dependency-path: autogpt_platform/frontend/pnpm-lock.yaml

Expand Down
4 changes: 2 additions & 2 deletions autogpt_platform/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base stage for both dev and prod
FROM node:22.22-alpine3.23 AS base
FROM node:24.18-alpine3.23 AS base
WORKDIR /app
RUN corepack enable
COPY autogpt_platform/frontend/package.json autogpt_platform/frontend/pnpm-lock.yaml ./
Expand Down Expand Up @@ -33,7 +33,7 @@ RUN pnpm run generate:api
RUN if [ "$NEXT_PUBLIC_PW_TEST" = "true" ]; then NEXT_PUBLIC_PW_TEST=true NODE_OPTIONS="--max-old-space-size=8192" pnpm build; else NODE_OPTIONS="--max-old-space-size=8192" pnpm build; fi

# Prod stage - based on NextJS reference Dockerfile https://github.com/vercel/next.js/blob/64271354533ed16da51be5dce85f0dbd15f17517/examples/with-docker/Dockerfile
FROM node:22.22-alpine3.23 AS prod
FROM node:24.18-alpine3.23 AS prod
ENV NODE_ENV=production
ENV HOSTNAME=0.0.0.0
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion autogpt_platform/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.3.4",
"private": true,
"engines": {
"node": "22.x"
"node": "24.x"
},
Comment thread
0ubbe marked this conversation as resolved.
"scripts": {
"dev": "pnpm run generate:api:force && next dev --turbo",
Expand Down
Loading