diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 27983ec..09b8895 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -29,7 +29,7 @@ jobs: run: | poetry run pytest -v - name: Save Coverage Report - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: coverage-${{ matrix.python-version }}-${{ matrix.os }} path: coverage.xml @@ -40,9 +40,9 @@ jobs: needs: test steps: - name: Restore all Coverage Reports - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 - name: Upload Coverage Report - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: flags: unittests token: ${{ secrets.CODECOV_TOKEN }}