From a600ea8f7868a852d47ba485c0d49864339eb072 Mon Sep 17 00:00:00 2001 From: James McTavish Date: Thu, 1 Feb 2024 11:47:07 -0500 Subject: [PATCH 1/2] fix: Repair broken test on Node 20 (#1193) * fix: Repair broken test on Node 20 --- test/test-evaluated-expressions.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test-evaluated-expressions.ts b/test/test-evaluated-expressions.ts index b6fe07ee..a25eebe9 100644 --- a/test/test-evaluated-expressions.ts +++ b/test/test-evaluated-expressions.ts @@ -234,7 +234,8 @@ describe('debugger provides useful information', () => { // TODO: investigate why "readable" field is not returned by debugger // as of Node 14: // {name: 'readable', value: 'true'}, - {name: '_eventsCount', value: '0'}, + // NOTE: "_eventsCount" is no longer returned by debugger in Node 20. + // {name: '_eventsCount', value: '0'}, {name: '_maxListeners', value: 'undefined'}, {name: 'complete', value: 'false'}, {name: 'url', value: ''}, From 10c7aa308c029385cde03e063522b6d93deabf79 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Thu, 1 Feb 2024 18:02:12 +0100 Subject: [PATCH 2/2] chore(deps): update codecov/codecov-action action to v4 (#1194) --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5aebfdad..404c8638 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,7 +25,7 @@ jobs: - run: npm install - run: npm test - name: coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: name: actions ${{ matrix.node }} fail_ci_if_error: false @@ -39,7 +39,7 @@ jobs: - run: npm install - run: npm test - name: coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: name: actions windows fail_ci_if_error: false