Skip to content

Commit 7cd89ed

Browse files
Upgrade Node.js to v20.19.2 for security enhancements (#4212)
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. Co-authored-by: Peter Dave Hello <[email protected]>
1 parent 03754f6 commit 7cd89ed

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
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
@@ -7,7 +7,7 @@ on:
77

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

1313
jobs:

.github/workflows/nightly-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch: # Allows manual triggering.
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/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-
20.19.2
1+
v20.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."

0 commit comments

Comments
 (0)