diff --git a/.github/workflows/run_coverage.yml b/.github/workflows/run_coverage.yml index 324b1e9d5..bea8df734 100644 --- a/.github/workflows/run_coverage.yml +++ b/.github/workflows/run_coverage.yml @@ -64,10 +64,10 @@ jobs: pytest --cov --cov-report=xml --cov-report=term # codecov uploader requires xml format - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: fail_ci_if_error: true - file: ./coverage.xml + files: ./coverage.xml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} @@ -118,9 +118,9 @@ jobs: pytest --cov --cov-report=xml --cov-report=term tests/unit/test_io_hdf5_streaming.py - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: fail_ci_if_error: true - file: ./coverage.xml + files: ./coverage.xml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}