From 8542757a28ec1b7384549323fe38f2c4e288637d Mon Sep 17 00:00:00 2001 From: Owen Kaluza Date: Tue, 8 Oct 2024 15:56:31 +1100 Subject: [PATCH] dependabot change broke everything, upload-artifact@v4 for all --- .github/workflows/osmesa_deploy.yaml | 4 ++-- .github/workflows/publish.yaml | 4 ++-- .github/workflows/wheel_deploy.yaml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/osmesa_deploy.yaml b/.github/workflows/osmesa_deploy.yaml index 86e7ffd7..97ca2915 100644 --- a/.github/workflows/osmesa_deploy.yaml +++ b/.github/workflows/osmesa_deploy.yaml @@ -39,7 +39,7 @@ jobs: run: | python -m cibuildwheel --output-dir wheelhouse - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl @@ -54,7 +54,7 @@ jobs: id-token: write # IMPORTANT: this permission is mandatory for trusted publishing steps: - name: Retrieve wheels - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: name: artifact path: dist diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 284a3acd..922ee60f 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -133,7 +133,7 @@ jobs: cd ~/ffmpeg_build/; rm -rf lib/*.a; zip --symlinks -r /ffmpeg-mini lib/* include/* - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ffmpeg-mini path: /ffmpeg-mini.zip @@ -143,7 +143,7 @@ jobs: needs: [build, ffmpeg] steps: - name: Download artifact - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: name: ffmpeg-mini diff --git a/.github/workflows/wheel_deploy.yaml b/.github/workflows/wheel_deploy.yaml index 10a4b123..83f9204a 100644 --- a/.github/workflows/wheel_deploy.yaml +++ b/.github/workflows/wheel_deploy.yaml @@ -44,7 +44,7 @@ jobs: run: | python -m cibuildwheel --output-dir wheelhouse - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl @@ -62,7 +62,7 @@ jobs: - name: Build sdist run: python setup.py sdist - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: path: dist/*.tar.gz @@ -81,7 +81,7 @@ jobs: # if: github.event_name == 'release' && github.event.action == 'published' steps: - name: Retrieve wheels - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: name: artifact path: dist