Skip to content

Commit d02f68e

Browse files
authored
Add nodejs v25 for actions (#1314)
This PR updates the Node.js versions used in GitHub Actions workflows. The primary change is updating from Node.js v22 to v24 across multiple workflow files, and adding v25 to the linux-x64 build and test workflow. **Key Changes:** - Node.js v22 replaced with v24 in Windows and Linux prebuild workflows - Node.js test matrix expanded to include v25 alongside v24 in the linux-x64 build and test workflow Fix: #1289
1 parent ce7c19b commit d02f68e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/linux-x64-build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
node-version: [22.X, 24.X]
23+
node-version: [24.X, 25.X]
2424
architecture: [x64]
2525
ros_distribution:
2626
- humble

.github/workflows/prebuild-linux-arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node-version: [22.X]
17+
node-version: [24.X]
1818
architecture: [arm64]
1919
ros_distribution:
2020
- humble

.github/workflows/prebuild-linux-x64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node-version: [22.X]
17+
node-version: [24.X]
1818
architecture: [x64]
1919
ros_distribution:
2020
- humble

.github/workflows/windows-build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node-version: [22.X]
17+
node-version: [24.X]
1818
ros_distribution:
1919
- humble
2020
- jazzy

0 commit comments

Comments
 (0)