Skip to content

Commit 778fd39

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 778fd39

1 file changed

Lines changed: 4 additions & 3 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

0 commit comments

Comments
 (0)