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
2 changes: 1 addition & 1 deletion .github/actions/setup-node-pnpm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ inputs:
node-version:
description: "Node.js version to use"
required: false
default: "20.19.2"
default: "20.20.0"
pnpm-version:
description: "pnpm version to use"
required: false
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.19.2
v20.20.0
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pnpm 10.8.1
nodejs 20.19.2
nodejs 20.20.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "roo-code",
"packageManager": "pnpm@10.8.1",
"engines": {
"node": "20.19.2"
"node": "20.20.0"
},
"scripts": {
"preinstall": "node scripts/bootstrap.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/evals/Dockerfile.runner
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ENV MISE_DATA_DIR="/root/.local/share/mise"
ENV PATH="/root/.local/share/mise/shims:/root/.local/bin:$PATH"

# Define language runtime versions (matching setup.sh)
ARG NODE_VERSION=20.19.2
ARG NODE_VERSION=20.20.0
ARG PYTHON_VERSION=3.13.2
ARG GO_VERSION=1.24.2
ARG RUST_VERSION=1.85.1
Expand Down
2 changes: 1 addition & 1 deletion packages/evals/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ cd packages/evals && ./scripts/setup.sh
The setup script does the following:

- Installs development tools: Homebrew, asdf, GitHub CLI, pnpm
- Installs programming languages: Node.js 20.19.2, Python 3.13.2, Go 1.24.2, Rust 1.85.1, Java 17
- Installs programming languages: Node.js 20.20.0, Python 3.13.2, Go 1.24.2, Rust 1.85.1, Java 17
- Sets up VS Code with required extensions
- Configures Docker services (PostgreSQL, Redis)
- Clones/updates the evals repository
Expand Down
6 changes: 3 additions & 3 deletions packages/evals/scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ fi
# Install language runtimes via mise
if ! command -v node &>/dev/null; then
echo "📦 Installing Node.js via mise..."
mise install node@20.19.2 || exit 1
mise use --global node@20.19.2 || exit 1
mise install node@20.20.0 || exit 1
mise use --global node@20.20.0 || exit 1
eval "$(mise activate bash)"
NODE_VERSION=$(node --version)
echo "✅ Node.js is installed ($NODE_VERSION)"
Expand All @@ -194,7 +194,7 @@ else
echo "✅ Node.js is installed ($NODE_VERSION)"
fi

if [[ $(node --version) != "v20.19.2" ]]; then
if [[ $(node --version) != "v20.20.0" ]]; then
NODE_VERSION=$(node --version)
echo "🚨 You have the wrong version of node installed ($NODE_VERSION)."
echo "💡 If you are using nvm then run 'nvm install' to install the version specified by the repo's .nvmrc."
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"engines": {
"vscode": "^1.84.0",
"node": "20.19.2"
"node": "20.20.0"
},
"author": {
"name": "Roo Code"
Expand Down
Loading