Skip to content

Commit 646230f

Browse files
committed
CI: bump unit test actions
The code coverage no longer works on Node.js 8 due to a (transitive) dependency of nyc made a breaking change. Luckily Node.js 8 is already covered by the integration tests so the easiest option is to remove it from the unit tests.
1 parent 9117b83 commit 646230f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/unit.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
strategy:
1010
matrix:
1111
node-version:
12-
- 8
1312
- 10
1413
- 12
1514
- 14
@@ -18,9 +17,9 @@ jobs:
1817
- 20
1918
steps:
2019
- name: Checkout
21-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2221
- name: Install Node.js
23-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2423
with:
2524
node-version: ${{ matrix.node-version }}
2625
- name: Install dependencies

0 commit comments

Comments
 (0)