diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 9122ef32..55fcec5e 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -29,9 +29,9 @@ jobs: fetch-depth: 0 - uses: astral-sh/setup-uv@v7 - name: Build wheels via cibuildwheel - uses: pypa/cibuildwheel@v3.3 + uses: pypa/cibuildwheel@v3.4 - name: Upload wheels artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: cibw-wheels-${{ runner.os }}-${{ runner.arch }} path: ./wheelhouse/*.whl @@ -47,12 +47,12 @@ jobs: steps: - name: Get sdist - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: Packages path: dist - name: Get wheels - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: pattern: cibw-wheels-* path: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fcb194cb..0743946e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -82,7 +82,7 @@ jobs: run: uv run coverage run -p -m pytest -v - name: Upload coverage - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: covreport-${{ matrix.os }}-py${{ matrix.python-version }}-mypyc${{ matrix.compile }}-${{ matrix.qt }} path: ./.coverage*