diff --git a/.github/workflows/dist.yml b/.github/workflows/dist.yml index bcafeb2..32e080e 100644 --- a/.github/workflows/dist.yml +++ b/.github/workflows/dist.yml @@ -32,8 +32,8 @@ jobs: name: Build CPython-${{ matrix.os }} steps: - uses: actions/checkout@v5 - - uses: pypa/cibuildwheel@9c00cb4f6b517705a3794b22395aedc36257242c # v3.13.3 - - uses: actions/upload-artifact@v4 + - uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.13.3 + - uses: actions/upload-artifact@v5 with: name: ${{ matrix.os }}-wheel path: ./wheelhouse/*.whl @@ -51,7 +51,7 @@ jobs: run: | python -m pip install build python -m build --sdist - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: "sdist" path: dist/*.tar.gz @@ -61,13 +61,13 @@ jobs: name: Download Wheels steps: - name: Download all workflow run artifacts - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 - name: Flatten directory working-directory: . run: | find . -mindepth 2 -type f -exec mv {} . \; find . -type d -empty -delete - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: all-dist-${{ github.run_id }} path: "./*" \ No newline at end of file diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 529802b..a613ef4 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -73,7 +73,7 @@ jobs: id-token: write steps: - name: Download all the dists - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: all-dist-${{ github.run_id }} path: dist/