From ec1375e4ba338a7960050260d6599c3549e48891 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 21:33:04 +0000 Subject: [PATCH] chore(deps): update github artifact actions --- .github/workflows/llvmdev_build.yml | 2 +- .github/workflows/llvmlite_conda_builder.yml | 6 +++--- .../workflows/llvmlite_linux-64_wheel_builder.yml | 10 +++++----- .../llvmlite_linux-aarch64_wheel_builder.yml | 10 +++++----- .../workflows/llvmlite_osx-arm64_wheel_builder.yml | 12 ++++++------ .github/workflows/llvmlite_win-64_wheel_builder.yml | 10 +++++----- .github/workflows/upload_packages.yml | 12 ++++++------ 7 files changed, 31 insertions(+), 31 deletions(-) diff --git a/.github/workflows/llvmdev_build.yml b/.github/workflows/llvmdev_build.yml index a1f435a2b..1b47d287e 100644 --- a/.github/workflows/llvmdev_build.yml +++ b/.github/workflows/llvmdev_build.yml @@ -155,7 +155,7 @@ jobs: ls -lah "${CONDA_CHANNEL_DIR}" - name: Upload conda package - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: ${{ matrix.recipe }}_${{ matrix.platform }} path: conda_channel_dir diff --git a/.github/workflows/llvmlite_conda_builder.yml b/.github/workflows/llvmlite_conda_builder.yml index 548697825..6f7f18240 100644 --- a/.github/workflows/llvmlite_conda_builder.yml +++ b/.github/workflows/llvmlite_conda_builder.yml @@ -98,7 +98,7 @@ jobs: - name: Download llvmdev Artifact if: ${{ inputs.llvmdev_run_id != '' }} - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmdev_${{ matrix.platform }} path: llvmdev_conda_packages @@ -123,7 +123,7 @@ jobs: conda build --debug -c "${LLVMDEV_CHANNEL}" "${extra_args[@]}" -c defaults --python=${{ matrix.python-version }} conda-recipes/llvmlite --output-folder="${CONDA_CHANNEL_DIR}" --no-test - name: Upload llvmlite conda package - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: llvmlite-${{ matrix.platform }}-py${{ matrix.python-version }} path: conda_channel_dir @@ -152,7 +152,7 @@ jobs: uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3.3.0 - name: Download llvmlite artifact - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-${{ matrix.platform }}-py${{ matrix.python-version }} diff --git a/.github/workflows/llvmlite_linux-64_wheel_builder.yml b/.github/workflows/llvmlite_linux-64_wheel_builder.yml index 4385e2931..39e77f31b 100644 --- a/.github/workflows/llvmlite_linux-64_wheel_builder.yml +++ b/.github/workflows/llvmlite_linux-64_wheel_builder.yml @@ -53,7 +53,7 @@ jobs: - name: Download llvmdev Artifact if: ${{ inputs.llvmdev_run_id != '' }} - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmdev_for_wheel_linux-64 path: llvmdev_conda_packages @@ -105,7 +105,7 @@ jobs: find wheelhouse -type f -name "*.whl" -print - name: Upload wheel - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: llvmlite-linux-64-py${{ matrix.python-version }} path: wheelhouse/*.whl @@ -143,7 +143,7 @@ jobs: run: conda install -c defaults wheel twine keyring rfc3986 - name: Download llvmlite wheels - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-linux-64-py${{ matrix.python-version }} path: dist @@ -177,7 +177,7 @@ jobs: allow-prereleases: true - name: Download llvmlite wheel - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-linux-64-py${{ matrix.python-version }} path: dist @@ -242,7 +242,7 @@ jobs: run: conda install -c anaconda anaconda-client - name: Download llvmlite wheel - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-linux-64-py${{ matrix.python-version }} path: dist diff --git a/.github/workflows/llvmlite_linux-aarch64_wheel_builder.yml b/.github/workflows/llvmlite_linux-aarch64_wheel_builder.yml index e9d6b1582..18caa24b8 100644 --- a/.github/workflows/llvmlite_linux-aarch64_wheel_builder.yml +++ b/.github/workflows/llvmlite_linux-aarch64_wheel_builder.yml @@ -53,7 +53,7 @@ jobs: - name: Download llvmdev Artifact if: ${{ inputs.llvmdev_run_id != '' }} - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmdev_for_wheel_linux-aarch64 path: llvmdev_conda_packages @@ -102,7 +102,7 @@ jobs: find wheelhouse -type f -name "*.whl" -print - name: Upload wheel - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: llvmlite-linux-aarch64-py${{ matrix.python-version }} path: wheelhouse/*.whl @@ -140,7 +140,7 @@ jobs: run: conda install -c defaults wheel twine keyring rfc3986 - name: Download llvmlite wheels - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-linux-aarch64-py${{ matrix.python-version }} path: dist @@ -174,7 +174,7 @@ jobs: allow-prereleases: true - name: Download llvmlite wheel - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-linux-aarch64-py${{ matrix.python-version }} path: dist @@ -239,7 +239,7 @@ jobs: run: conda install -c anaconda anaconda-client - name: Download llvmlite wheel - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-linux-aarch64-py${{ matrix.python-version }} path: dist diff --git a/.github/workflows/llvmlite_osx-arm64_wheel_builder.yml b/.github/workflows/llvmlite_osx-arm64_wheel_builder.yml index 4614c5b01..4b0dc4baf 100644 --- a/.github/workflows/llvmlite_osx-arm64_wheel_builder.yml +++ b/.github/workflows/llvmlite_osx-arm64_wheel_builder.yml @@ -57,7 +57,7 @@ jobs: - name: Download llvmdev Artifact if: ${{ inputs.llvmdev_run_id != '' }} - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmdev_for_wheel_osx-arm64 path: llvmdev_conda_packages @@ -99,7 +99,7 @@ jobs: arch -arm64 python -m build --wheel --no-isolation - name: Upload wheel - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: llvmlite-osx-arm64-py${{ matrix.python-version }} path: dist/*.whl @@ -113,7 +113,7 @@ jobs: - name: Upload sdist (once with python 3.10) if: ${{ matrix.python-version == '3.10' }} - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: llvmlite-sdist path: dist/*.tar.gz @@ -150,7 +150,7 @@ jobs: run: conda install -c defaults wheel twine keyring rfc3986 - name: Download llvmlite wheels - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-osx-arm64-py${{ matrix.python-version }} path: dist @@ -180,7 +180,7 @@ jobs: allow-prereleases: true - name: Download llvmlite wheel - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-osx-arm64-py${{ matrix.python-version }} path: dist @@ -226,7 +226,7 @@ jobs: run: conda install -c anaconda anaconda-client - name: Download llvmlite wheel - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-osx-arm64-py${{ matrix.python-version }} path: dist diff --git a/.github/workflows/llvmlite_win-64_wheel_builder.yml b/.github/workflows/llvmlite_win-64_wheel_builder.yml index 370112720..15f52d87a 100644 --- a/.github/workflows/llvmlite_win-64_wheel_builder.yml +++ b/.github/workflows/llvmlite_win-64_wheel_builder.yml @@ -64,7 +64,7 @@ jobs: - name: Download llvmdev Artifact if: ${{ inputs.llvmdev_run_id != '' }} - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmdev_for_wheel_win-64 path: llvmdev_conda_packages @@ -97,7 +97,7 @@ jobs: ls -l dist - name: Upload llvmlite wheel - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: llvmlite-win-64-py${{ matrix.python-version }} path: dist/*.whl @@ -134,7 +134,7 @@ jobs: run: conda install -c defaults py-lief wheel twine keyring rfc3986 - name: Download llvmlite wheels - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-win-64-py${{ matrix.python-version }} path: dist @@ -168,7 +168,7 @@ jobs: allow-prereleases: true - name: Download llvmlite wheel - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-win-64-py${{ matrix.python-version }} path: dist @@ -220,7 +220,7 @@ jobs: run: conda install -c anaconda anaconda-client - name: Download llvmlite wheel - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: llvmlite-win-64-py${{ matrix.python-version }} path: dist diff --git a/.github/workflows/upload_packages.yml b/.github/workflows/upload_packages.yml index 9d91eb06b..dfa724ad0 100644 --- a/.github/workflows/upload_packages.yml +++ b/.github/workflows/upload_packages.yml @@ -122,7 +122,7 @@ jobs: echo "" - name: Upload wheels as artifact - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: wheels path: | @@ -131,7 +131,7 @@ jobs: retention-days: 7 - name: Upload conda packages as artifact - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: conda-packages path: conda_packages/ @@ -149,7 +149,7 @@ jobs: steps: - name: Download wheels artifact - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: wheels path: dist @@ -180,7 +180,7 @@ jobs: steps: - name: Download wheels artifact - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: wheels path: dist @@ -220,13 +220,13 @@ jobs: run: conda install -c anaconda anaconda-client - name: Download conda packages artifact - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: conda-packages path: conda_packages - name: Download wheels artifact - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: wheels path: dist