diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a2f8802..b05cec7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,7 +25,7 @@ jobs: - name: Build a binary wheel and a source tarball run: python3 -m build . - name: Store the distribution packages - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: python-package-distributions path: dist/ diff --git a/.github/workflows/test_with_pytest.yml b/.github/workflows/test_with_pytest.yml index 03c4716..f0f3cbe 100644 --- a/.github/workflows/test_with_pytest.yml +++ b/.github/workflows/test_with_pytest.yml @@ -37,13 +37,13 @@ jobs: python -m pytest -n=auto --cov=imas --cov-report=term-missing --cov-report=xml:coverage.xml --cov-report=html:htmlcov --junit-xml=junit.xml - name: Upload coverage report ${{ matrix.python-version }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: coverage-report-${{ matrix.python-version }} path: htmlcov - name: Upload test report ${{ matrix.python-version }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-report-${{ matrix.python-version }} path: junit.xml