diff --git a/.github/workflows/server-tests.yml b/.github/workflows/server-tests.yml index 9da7244527..85fc3af6d4 100644 --- a/.github/workflows/server-tests.yml +++ b/.github/workflows/server-tests.yml @@ -194,9 +194,10 @@ jobs: uses: actions/download-artifact@v3 - name: Upload coverage data - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: name: Server + token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true verbose: true flags: server diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index ecda8cc6b1..2c94c800bc 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -203,16 +203,17 @@ jobs: uses: actions/download-artifact@v3 - name: Upload python coverage data - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: name: UIBackend + token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true verbose: true files: ./coverage-py-1/coverage.xml,./coverage-py-2/coverage.xml,./coverage-py-3/coverage.xml flags: server-ui - name: Upload JS coverage data - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: name: Cypress token: ${{ secrets.CODECOV_TOKEN }}