Skip to content

Commit 241287a

Browse files
chore: upgrade Node.js setup action to v5 in workflows and documentation
1 parent 179c31d commit 241287a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/automated-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Check out repository code
1717
uses: actions/checkout@v5
1818
- name: Use Node.js
19-
uses: actions/setup-node@v4
19+
uses: actions/setup-node@v5
2020
with:
2121
node-version: lts/*
2222
cache: npm

.github/workflows/check-modules-compare.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@v5
2323

2424
- name: Use Node.js
25-
uses: actions/setup-node@v4
25+
uses: actions/setup-node@v5
2626
with:
2727
node-version: lts/*
2828
cache: npm

.github/workflows/release-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: Check out repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Set up Node.js
25-
uses: actions/setup-node@v4
25+
uses: actions/setup-node@v5
2626
with:
2727
node-version: 24
2828
cache: npm

guides/eslint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ jobs:
172172
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
173173
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
174174
- name: Use Node.js
175-
uses: actions/setup-node@v4
175+
uses: actions/setup-node@v5
176176
with:
177177
node-version: lts/*
178178
cache: npm

0 commit comments

Comments
 (0)