From 16cc042a448ef10132826a91ef8af163c540d99a Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Wed, 17 Apr 2024 20:32:59 +0300 Subject: [PATCH] CI: Return to codecov-action@v3.1.5, but with tokens codecov-action@v4 is unstable and sometimes gives the error: ``` Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1 ``` --- .github/workflows/engine_unit-test.yml | 2 +- .github/workflows/functional_test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/engine_unit-test.yml b/.github/workflows/engine_unit-test.yml index 8357264..b52a1f5 100644 --- a/.github/workflows/engine_unit-test.yml +++ b/.github/workflows/engine_unit-test.yml @@ -38,7 +38,7 @@ jobs: coverage xml -i -o coverage_unittest.xml - name: Handle coverage - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v3.1.5 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: diff --git a/.github/workflows/functional_test.yml b/.github/workflows/functional_test.yml index b9590ee..04a7de1 100644 --- a/.github/workflows/functional_test.yml +++ b/.github/workflows/functional_test.yml @@ -61,7 +61,7 @@ jobs: coverage xml -i -o coverage.xml - name: Handle coverage - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v3.1.5 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: -- 2.31.1