From 50536ab5ffbf757415335007462e09362595fb01 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:21:51 +0000 Subject: [PATCH] chore(deps): update github artifact actions to v4 --- .github/workflows/analysis-coverage.yml | 12 ++++++------ .github/workflows/build-cache-deps.yml | 6 +++--- .github/workflows/publish-wheels.yml | 4 ++-- .github/workflows/wheels-pi_heif.yml | 14 +++++++------- .github/workflows/wheels-pillow_heif.yml | 12 ++++++------ 5 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/analysis-coverage.yml b/.github/workflows/analysis-coverage.yml index 98d20bb5..09432d1c 100644 --- a/.github/workflows/analysis-coverage.yml +++ b/.github/workflows/analysis-coverage.yml @@ -64,7 +64,7 @@ jobs: coverage xml && coverage html - name: HTML coverage to artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage_linux path: ./htmlcov @@ -111,7 +111,7 @@ jobs: coverage xml && coverage html - name: HTML coverage to artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage_linux_dev path: ./htmlcov @@ -148,7 +148,7 @@ jobs: run: coverage run -m pytest && coverage xml && coverage html - name: HTML coverage to artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage_macos path: ./htmlcov @@ -217,7 +217,7 @@ jobs: run: coverage run -m pytest && coverage xml && coverage html - name: HTML coverage to artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage_windows path: ./htmlcov @@ -262,7 +262,7 @@ jobs: run: sudo -H coverage run -m pytest && coverage xml && coverage html - name: HTML coverage to artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage_light_macos path: ./htmlcov @@ -323,7 +323,7 @@ jobs: run: coverage run -m pytest tests/import_error_test.py && coverage xml && coverage html - name: HTML coverage to artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage_macos_imp_err path: ./htmlcov diff --git a/.github/workflows/build-cache-deps.yml b/.github/workflows/build-cache-deps.yml index bdb28f4e..e8ce22c1 100644 --- a/.github/workflows/build-cache-deps.yml +++ b/.github/workflows/build-cache-deps.yml @@ -63,7 +63,7 @@ jobs: run: twine check wheelhouse/* - name: Uploading wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels path: wheelhouse/*.whl @@ -135,7 +135,7 @@ jobs: run: twine check wheelhouse/* - name: Uploading wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels path: wheelhouse/*.whl @@ -194,7 +194,7 @@ jobs: python3 -m twine check ./repaired_dist/* - name: Uploading wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pi_heif path: ./repaired_dist/*.whl diff --git a/.github/workflows/publish-wheels.yml b/.github/workflows/publish-wheels.yml index 049a763f..ea368629 100644 --- a/.github/workflows/publish-wheels.yml +++ b/.github/workflows/publish-wheels.yml @@ -35,13 +35,13 @@ jobs: echo "EOF" >> $GITHUB_ENV - name: Pillow-Heif sdist and wheels - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: wheels_pillow_heif path: wheelhouse_pillow_heif - name: Pi-Heif sdist and wheels - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: wheels_pi_heif path: wheelhouse_pi_heif diff --git a/.github/workflows/wheels-pi_heif.yml b/.github/workflows/wheels-pi_heif.yml index f10ebd5f..0f6c446a 100644 --- a/.github/workflows/wheels-pi_heif.yml +++ b/.github/workflows/wheels-pi_heif.yml @@ -25,7 +25,7 @@ jobs: unzip wheels.zip - name: Upload built wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pi_heif path: wheelhouse/*.whl @@ -85,7 +85,7 @@ jobs: python3 -m twine check wheelhouse/* - name: Upload built wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pi_heif path: wheelhouse/*.whl @@ -117,7 +117,7 @@ jobs: python3 -m twine check wheelhouse/* - name: Upload built wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pi_heif path: wheelhouse/*.whl @@ -186,7 +186,7 @@ jobs: python3 -m twine check wheelhouse/* - name: Uploading wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pi_heif path: wheelhouse/*.whl @@ -244,7 +244,7 @@ jobs: python3 -m twine check wheelhouse/* - name: Upload wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pi_heif path: wheelhouse/*.whl @@ -308,7 +308,7 @@ jobs: python3 -m twine check ./repaired_dist/* - name: Uploading wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pi_heif path: ./repaired_dist/*.whl @@ -355,7 +355,7 @@ jobs: python3 -m pytest - name: Upload sdist - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pi_heif path: wheelhouse/*.tar.gz diff --git a/.github/workflows/wheels-pillow_heif.yml b/.github/workflows/wheels-pillow_heif.yml index 7ab0da52..92cd3877 100644 --- a/.github/workflows/wheels-pillow_heif.yml +++ b/.github/workflows/wheels-pillow_heif.yml @@ -24,7 +24,7 @@ jobs: unzip wheels.zip - name: Upload built wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pillow_heif path: wheelhouse/*.whl @@ -81,7 +81,7 @@ jobs: python3 -m twine check wheelhouse/* - name: Upload built wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pillow_heif path: wheelhouse/*.whl @@ -108,7 +108,7 @@ jobs: python3 -m twine check wheelhouse/* - name: Upload built wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pillow_heif path: wheelhouse/*.whl @@ -181,7 +181,7 @@ jobs: python3 -m twine check wheelhouse/* - name: Uploading wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pillow_heif path: wheelhouse/*.whl @@ -245,7 +245,7 @@ jobs: python3 -m twine check wheelhouse/* - name: Uploading wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pillow_heif path: wheelhouse/*.whl @@ -290,7 +290,7 @@ jobs: python3 -m pytest - name: Upload sdist - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels_pillow_heif path: wheelhouse/*.tar.gz