diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2aea85bb8..218e03345 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -115,7 +115,8 @@ jobs: - name: Upload coverage reports to Codecov if: ${{ matrix.python-version == env.PYTHON_VERSION }} uses: codecov/codecov-action@v5 - + with: + token: ${{ secrets.CODECOV_TOKEN }} test-ui: name: Test UI needs: prepare-yarn-cache @@ -151,6 +152,8 @@ jobs: run: make test-ui-unit - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }} test-integration: name: Run Integration Tests @@ -192,6 +195,7 @@ jobs: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v5 with: + token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage/cobertura-coverage.xml - name: Collect logs uses: actions/upload-artifact@v4