diff --git a/.github/workflows/dist-python.yml b/.github/workflows/dist-python.yml index cc3446b..c028048 100644 --- a/.github/workflows/dist-python.yml +++ b/.github/workflows/dist-python.yml @@ -51,7 +51,7 @@ jobs: cd .. python -c "from pymongoexplain import ExplainableCollection" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: "dist" path: ./dist/*.* @@ -62,13 +62,13 @@ jobs: name: Download Dist 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 3ed9804..521ab2c 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -70,7 +70,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/