From 70587ca1958cf8305c60a019cc9956675d09524f Mon Sep 17 00:00:00 2001 From: sb-benohe <71290292+sb-benohe@users.noreply.github.com> Date: Tue, 17 Oct 2023 10:00:09 -0400 Subject: [PATCH] Update unit_test_coverage.yml --- .github/workflows/unit_test_coverage.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/unit_test_coverage.yml b/.github/workflows/unit_test_coverage.yml index d3465372a..3f9e21aa4 100644 --- a/.github/workflows/unit_test_coverage.yml +++ b/.github/workflows/unit_test_coverage.yml @@ -22,15 +22,15 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - - name: Use Node.js 14.x + - name: Use Node.js 20.x uses: actions/setup-node@v2-beta with: - node-version: 14.x + node-version: 20.x - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules with: @@ -60,7 +60,7 @@ jobs: run: npm run-script coverage - name: Store the coverage report as an artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage path: coverage/lcov.info @@ -71,7 +71,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download coverage artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: coverage @@ -87,14 +87,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Download coverage artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: coverage - name: Upload code coverage to Codecov - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: file: lcov.info fail_ci_if_error: true