Skip to content

Commit 0003886

Browse files
author
Gonzalo Diaz
committed
[Github Actions] Node versions upgraded.
1 parent 1dfad47 commit 0003886

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/eslint-code-scanning.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@ jobs:
3737
- name: Set up Node.js
3838
uses: actions/setup-node@v6
3939
with:
40-
node-version: 24.x
40+
node-version: 26.x
4141

4242
- name: Install ESLint
4343
run: |
44-
npm install
44+
npm install --include=dev eslint@10.4.1
45+
npm install --include=dev @microsoft/eslint-formatter-sarif@3.0.0
4546
4647
- name: Test ESLint
4748
run: |

.github/workflows/eslint.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
matrix:
3838
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
39-
node-version: [18.x, 20.x, 22.x]
39+
node-version: [22.x, 24.x, 26.x]
4040
# See supported Node.js release schedule
4141
# at https://nodejs.org/en/about/releases/
4242
permissions:
@@ -52,11 +52,10 @@ jobs:
5252
- name: Set up Node.js
5353
uses: actions/setup-node@v6
5454
with:
55-
node-version: 24.x
56-
55+
node-version: ${{ matrix.node-version }}
5756
- name: Install ESLint
5857
run: |
59-
npm install
58+
npm install --include=dev eslint@10.4.1
6059
6160
- name: Test ESLint
6261
run: |

.github/workflows/make-coverage-html.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Node.js
2727
uses: actions/setup-node@v6
2828
with:
29-
node-version: 24.x
29+
node-version: 26.x
3030

3131
- name: Tool test
3232
run: |

.github/workflows/markdown-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
node-version: [22.x]
22+
node-version: [26.x]
2323
# See supported Node.js release schedule
2424
# at https://nodejs.org/en/about/releases/
2525

.github/workflows/node-coverage.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Node.js
2323
uses: actions/setup-node@v6
2424
with:
25-
node-version: 24.x
25+
node-version: 26.x
2626

2727
- name: Tool test
2828
run: |

0 commit comments

Comments
 (0)