Skip to content

Commit ee1736c

Browse files
committed
chore: update GitHub Actions
No change to logic. This updates GitHub Actions to their latest versions. This also ensures we are testing up through Node v26. The most important part of this is that it updates codecov to v7, which contains a major bug fix that was blocking all codecov uploads (and failing all CI test runs).
1 parent a622a28 commit ee1736c

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,21 @@ jobs:
1313
- 20
1414
- 22
1515
- 24
16+
- 26
1617
os:
1718
- ubuntu-latest
1819
- macos-latest
1920
- windows-latest
2021
steps:
21-
- uses: actions/checkout@v4
22-
- uses: actions/setup-node@v4
22+
- uses: actions/checkout@v6
23+
- uses: actions/setup-node@v6
2324
with:
2425
node-version: ${{ matrix.node-version }}
2526
- run: npm install
2627
- run: npm run test
2728
- run: npm run check-node-support
2829
- name: Upload coverage reports to Codecov
29-
uses: codecov/codecov-action@v5
30+
uses: codecov/codecov-action@v7
3031
with:
3132
token: ${{ secrets.CODECOV_TOKEN }}
3233
fail_ci_if_error: true

scripts/check-node-support.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var shell = require('shelljs');
99

1010
// This is the authoritative list of supported node versions.
1111
var MIN_NODE_VERSION = 20;
12-
var MAX_NODE_VERSION = 24;
12+
var MAX_NODE_VERSION = 26;
1313

1414
function checkReadme(minNodeVersion) {
1515
var start = '<!-- start minVersion -->';

0 commit comments

Comments
 (0)