Skip to content

Commit 9d0ae59

Browse files
Upgrade Node.js to v20.19.2 for security enhancements
This commit upgrades Node.js version from v20.18.1 to v20.19.2. This version incorporates security patches that address known vulnerabilities, improving the overall security posture.
1 parent fe9137b commit 9d0ae59

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

.github/workflows/changeset-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
env:
1010
REPO_PATH: ${{ github.repository }}
1111
GIT_REF: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || 'main' }}
12-
NODE_VERSION: 20.18.1
12+
NODE_VERSION: 20.19.2
1313
PNPM_VERSION: 10.8.1
1414

1515
jobs:

.github/workflows/code-qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches: [main]
1010

1111
env:
12-
NODE_VERSION: 20.18.1
12+
NODE_VERSION: 20.19.2
1313
PNPM_VERSION: 10.8.1
1414

1515
jobs:

.github/workflows/marketplace-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
env:
88
GIT_REF: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || 'main' }}
9-
NODE_VERSION: 20.18.1
9+
NODE_VERSION: 20.19.2
1010
PNPM_VERSION: 10.8.1
1111

1212
jobs:

.github/workflows/nightly-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
workflow_dispatch: # Allows manual triggering.
1212

1313
env:
14-
NODE_VERSION: 20.18.1
14+
NODE_VERSION: 20.19.2
1515
PNPM_VERSION: 10.8.1
1616

1717
jobs:

.github/workflows/update-contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch: # Allows manual triggering
88

99
env:
10-
NODE_VERSION: 20.18.1
10+
NODE_VERSION: 20.19.2
1111
PNPM_VERSION: 10.8.1
1212

1313
jobs:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20.18.1
1+
v20.19.2

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 20.18.1
1+
nodejs 20.19.2

evals/.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
python 3.13.2
22
golang 1.24.2
33
rust 1.85.1
4-
nodejs 20.18.1
4+
nodejs 20.19.2

evals/scripts/setup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,16 +176,16 @@ for i in "${!options[@]}"; do
176176
case "${plugin}" in
177177
"nodejs")
178178
if ! command -v node &>/dev/null; then
179-
asdf install nodejs 20.18.1 || exit 1
180-
asdf set nodejs 20.18.1 || exit 1
179+
asdf install nodejs 20.19.2 || exit 1
180+
asdf set nodejs 20.19.2 || exit 1
181181
NODE_VERSION=$(node --version)
182182
echo "✅ Node.js is installed ($NODE_VERSION)"
183183
else
184184
NODE_VERSION=$(node --version)
185185
echo "✅ Node.js is installed ($NODE_VERSION)"
186186
fi
187187

188-
if [[ $(node --version) != "v20.18.1" ]]; then
188+
if [[ $(node --version) != "v20.19.2" ]]; then
189189
NODE_VERSION=$(node --version)
190190
echo "🚨 You have the wrong version of node installed ($NODE_VERSION)."
191191
echo "💡 If you are using nvm then run 'nvm install' to install the version specified by the repo's .nvmrc."

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "roo-code",
33
"packageManager": "[email protected]",
44
"engines": {
5-
"node": "20.18.1"
5+
"node": "20.19.2"
66
},
77
"scripts": {
88
"preinstall": "node scripts/bootstrap.mjs",

0 commit comments

Comments
 (0)