diff --git a/.github/workflows/go_app_pull_requests.yml b/.github/workflows/go_app_pull_requests.yml index 299727f..e6c34fd 100644 --- a/.github/workflows/go_app_pull_requests.yml +++ b/.github/workflows/go_app_pull_requests.yml @@ -108,15 +108,12 @@ jobs: name: Test Report path: junit_report.xml reporter: java-junit - - uses: codecov/test-results-action@v1 + - uses: codecov/codecov-action@v5 with: fail_ci_if_error: true # optional (default = false) files: ./junit_report.xml name: junit-report - token: ${{ secrets.CODECOV_TOKEN }} - - name: Upload test coverage results to Codecov - uses: codecov/codecov-action@v4 - with: + report_type: test_results token: ${{ secrets.CODECOV_TOKEN }} docker-build: # diff --git a/.github/workflows/go_app_push_main.yml b/.github/workflows/go_app_push_main.yml index a0a69fb..0872ff6 100644 --- a/.github/workflows/go_app_push_main.yml +++ b/.github/workflows/go_app_push_main.yml @@ -65,15 +65,12 @@ jobs: name: Test Report path: junit_report.xml reporter: java-junit - - uses: codecov/test-results-action@v1 + - uses: codecov/codecov-action@v5 with: fail_ci_if_error: true # optional (default = false) files: ./junit_report.xml name: junit-report - token: ${{ secrets.CODECOV_TOKEN }} - - name: Upload test coverage results to Codecov - uses: codecov/codecov-action@v4 - with: + report_type: test_results token: ${{ secrets.CODECOV_TOKEN }} release: # diff --git a/.github/workflows/go_lib_pull_requests.yml b/.github/workflows/go_lib_pull_requests.yml index 5ed8c86..959e368 100644 --- a/.github/workflows/go_lib_pull_requests.yml +++ b/.github/workflows/go_lib_pull_requests.yml @@ -117,13 +117,10 @@ jobs: name: Test Report path: junit_report.xml reporter: java-junit - - uses: codecov/test-results-action@v1 + - uses: codecov/codecov-action@v5 with: fail_ci_if_error: true # optional (default = false) files: ./junit_report.xml name: junit-report - token: ${{ secrets.CODECOV_TOKEN }} - - name: Upload test coverage results to Codecov - uses: codecov/codecov-action@v4 - with: + report_type: test_results token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/go_lib_push_main.yml b/.github/workflows/go_lib_push_main.yml index 4112b7d..d328692 100644 --- a/.github/workflows/go_lib_push_main.yml +++ b/.github/workflows/go_lib_push_main.yml @@ -68,15 +68,12 @@ jobs: name: Test Report path: junit_report.xml reporter: java-junit - - uses: codecov/test-results-action@v1 + - uses: codecov/codecov-action@v5 with: fail_ci_if_error: true # optional (default = false) files: ./junit_report.xml name: junit-report - token: ${{ secrets.CODECOV_TOKEN }} - - name: Upload test coverage results to Codecov - uses: codecov/codecov-action@v4 - with: + report_type: test_results token: ${{ secrets.CODECOV_TOKEN }} release: #