diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7f346e62..d3cece0f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -453,7 +453,7 @@ jobs: if: env.CODECOV_TOKEN != '' env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 with: token: ${{ env.CODECOV_TOKEN }} files: coverage/combined/total-frontend-coverage.json diff --git a/.github/workflows/python_test.yml b/.github/workflows/python_test.yml index 1975763ab..1dd096b9a 100644 --- a/.github/workflows/python_test.yml +++ b/.github/workflows/python_test.yml @@ -98,7 +98,7 @@ jobs: command: make unit_tests args="-x -vv --splits ${{ matrix.splitCount }} --group ${{ matrix.group }} --reruns 5 --cov --cov-config=src/backend/.coveragerc --cov-report=xml --cov-report=html" - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 if: matrix.python-version == '3.10' with: token: ${{ secrets.CODECOV_TOKEN }} @@ -166,7 +166,7 @@ jobs: DO_NOT_TRACK: true # disable telemetry reporting - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 if: matrix.python-version == '3.10' with: token: ${{ secrets.CODECOV_TOKEN }}