diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 17941a7..bd366fe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - name: Build wheel with hatch run: hatch build - name: Upload wheel - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: wheel path: dist/*.whl diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index bc61701..381daba 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -25,7 +25,7 @@ jobs: pytest --cov=src --cov-report=xml:coverage.xml - name: Upload coverage artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: coverage-xml path: ${{ github.workspace }}/coverage.xml