diff --git a/.github/workflows/dist-python.yml b/.github/workflows/dist-python.yml index 01d2ba04..7124a9d3 100644 --- a/.github/workflows/dist-python.yml +++ b/.github/workflows/dist-python.yml @@ -106,7 +106,7 @@ jobs: MACOSX_DEPLOYMENT_TARGET: "12.0" run: python -m cibuildwheel --output-dir wheelhouse - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: ${{ matrix.python }}-${{ startsWith(matrix.buildplat[1], 'macosx') && 'macosx' || matrix.buildplat[1] }} path: ./bindings/python/wheelhouse/*.whl @@ -144,7 +144,7 @@ jobs: cd .. python -c "from pymongoarrow.lib import libbson_version" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: "sdist" path: ./bindings/python/dist/*.tar.gz @@ -155,13 +155,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: "./*" diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 37e83573..5a4f04a6 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -83,7 +83,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/