Skip to content

Commit 5a25bed

Browse files
tgd1975mistral-vibe
andcommitted
chore: Force Node.js 24 for all actions
This updates the workflow to force Node.js 24 for all actions to resolve the deprecation warnings. Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
1 parent 5d156bc commit 5a25bed

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15+
env:
16+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
1517
- name: Install clang-format
1618
run: sudo apt-get install -y clang-format
1719
- name: Check C++ code formatting
@@ -42,9 +44,13 @@ jobs:
4244
steps:
4345
- name: Checkout repository
4446
uses: actions/checkout@v4
47+
env:
48+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
4549

4650
- name: Cache CMake build directory
4751
uses: actions/cache@v4
52+
env:
53+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
4854
with:
4955
path: .vscode/build
5056
key: cmake-${{ runner.os }}-${{ hashFiles('CMakeLists.txt', 'test/CMakeLists.txt') }}
@@ -79,6 +85,8 @@ jobs:
7985

8086
- name: Upload test report artifact
8187
uses: actions/upload-artifact@v4
88+
env:
89+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
8290
if: always()
8391
with:
8492
name: test-results

0 commit comments

Comments
 (0)