diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index cfff8a4..dff0c43 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -28,9 +28,11 @@ jobs: run: make test-unit - name: Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v4 with: + token: ${{ secrets.CODECOV_TOKEN }} file: .coverage/coverage_unit.txt + disable_search: true flags: unit-tests name: codecov-unit-test @@ -51,9 +53,11 @@ jobs: run: make test-integration - name: Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v4 with: + token: ${{ secrets.CODECOV_TOKEN }} file: .coverage/coverage_integration.txt + disable_search: true flags: integration-tests name: codecov-integration-test