From 8822867ecac8fca28660914ae16c65ff5b00aeed Mon Sep 17 00:00:00 2001 From: Mike Smith <10135646+mjsmith1028@users.noreply.github.com> Date: Tue, 7 Dec 2021 22:39:52 -0500 Subject: [PATCH] chore(codecov): Update github action to latest version Signed-off-by: Mike Smith <10135646+mjsmith1028@users.noreply.github.com> --- .github/workflows/test_release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_release.yaml b/.github/workflows/test_release.yaml index a2ec107c7a..b80c17c85e 100644 --- a/.github/workflows/test_release.yaml +++ b/.github/workflows/test_release.yaml @@ -14,14 +14,14 @@ jobs: shell: bash run: DOCKER_BUILDKIT=1 docker build -o ./tmp -t metacontroller:test -f Dockerfile.test . - name: coverage-unit - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v2 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos files: ./tmp/unit-coverage.out flags: unit fail_ci_if_error: true # optional (default = false) - name: coverage-integration - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v2 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos files: ./tmp/integration-coverage.out