Skip to content

Commit cbeb0fc

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 230faf7 commit cbeb0fc

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,21 @@ jobs:
1313
- 18
1414
- 20
1515
- 22
16+
- 24
17+
- 26
1618
os:
1719
- ubuntu-latest
1820
- macos-latest
1921
- windows-latest
2022
steps:
21-
- uses: actions/checkout@v2
22-
- uses: actions/setup-node@v2
23+
- uses: actions/checkout@v6
24+
- uses: actions/setup-node@v6
2325
with:
2426
node-version: ${{ matrix.node-version }}
2527
- run: npm install
2628
- run: npm run test
2729
- name: Upload coverage reports to Codecov
28-
uses: codecov/codecov-action@v4
30+
uses: codecov/codecov-action@v7
2931
with:
3032
token: ${{ secrets.CODECOV_TOKEN }}
3133
fail_ci_if_error: true

0 commit comments

Comments
 (0)