From 2b6bbc28a2a228f48d84ec1e25723555460658d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 21:12:11 +0000 Subject: [PATCH] Bump the gha-all group across 1 directory with 3 updates Bumps the gha-all group with 3 updates in the / directory: [actions/download-artifact](https://github.com/actions/download-artifact), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [renovatebot/github-action](https://github.com/renovatebot/github-action). Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `renovatebot/github-action` from 46.1.2 to 46.1.3 - [Release notes](https://github.com/renovatebot/github-action/releases) - [Changelog](https://github.com/renovatebot/github-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/renovatebot/github-action/compare/v46.1.2...v46.1.3) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-all - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-all - dependency-name: renovatebot/github-action dependency-version: 46.1.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gha-all ... Signed-off-by: dependabot[bot] --- .github/workflows/gh-build-docs.yml | 2 +- .github/workflows/gh-gasnet.yml | 2 +- .github/workflows/gh-mpi.yml | 2 +- .github/workflows/release-wheels.yml | 2 +- .github/workflows/renovate.yml | 2 +- .github/workflows/source-build-cpu.yml | 2 +- .github/workflows/source-build-gpu.yml | 2 +- .github/workflows/source-test-cpu.yml | 2 +- .github/workflows/source-test-gpu.yml | 2 +- .github/workflows/wheels-build.yml | 2 +- .github/workflows/wheels-mac.yml | 2 +- .github/workflows/wheels-test.yml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/gh-build-docs.yml b/.github/workflows/gh-build-docs.yml index b969676605..797c424105 100644 --- a/.github/workflows/gh-build-docs.yml +++ b/.github/workflows/gh-build-docs.yml @@ -66,7 +66,7 @@ jobs: echo "${{ needs.build-docs.outputs.artifacts-dir }}" - name: Download build artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: ${{ needs.build-docs.outputs.artifact-name }} path: ${{ needs.build-docs.outputs.artifacts-dir }} diff --git a/.github/workflows/gh-gasnet.yml b/.github/workflows/gh-gasnet.yml index 050a0d3f83..8ca9ebc983 100644 --- a/.github/workflows/gh-gasnet.yml +++ b/.github/workflows/gh-gasnet.yml @@ -87,7 +87,7 @@ jobs: ls -lAhR "${CONDA_OUTPUT}" - name: Upload gasnet wrapper artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_PATH }} diff --git a/.github/workflows/gh-mpi.yml b/.github/workflows/gh-mpi.yml index 5ef06765de..4d1915c743 100644 --- a/.github/workflows/gh-mpi.yml +++ b/.github/workflows/gh-mpi.yml @@ -75,7 +75,7 @@ jobs: ls -lAhR "${CONDA_OUTPUT}" - name: Upload mpi wrapper artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_PATH }} diff --git a/.github/workflows/release-wheels.yml b/.github/workflows/release-wheels.yml index bddf436e83..0c58985b10 100644 --- a/.github/workflows/release-wheels.yml +++ b/.github/workflows/release-wheels.yml @@ -34,7 +34,7 @@ jobs: runs-on: linux-amd64-cpu4 steps: - name: Download all artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: path: dist/ merge-multiple: true diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 923d675566..2e2a7769d7 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -69,7 +69,7 @@ jobs: repositories: ${{ github.event.repository.name }} - name: Self-hosted Renovate - uses: renovatebot/github-action@v46.1.2 + uses: renovatebot/github-action@v46.1.3 env: LOG_LEVEL: ${{ steps.config.outputs.log_level }} RENOVATE_DRY_RUN: ${{ steps.config.outputs.dry_run }} diff --git a/.github/workflows/source-build-cpu.yml b/.github/workflows/source-build-cpu.yml index 99592c8d6a..3cbeb2bb5f 100644 --- a/.github/workflows/source-build-cpu.yml +++ b/.github/workflows/source-build-cpu.yml @@ -215,7 +215,7 @@ jobs: - name: C++ build upload env: BUILD_NAME: ${{ matrix.ARCH }}-gcc${{ matrix.GCC_VER }}-${{ matrix.BUILD_MODE }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: source-build-${{ env.BUILD_NAME }} # We have already compressed the artifact, no need for github to try and diff --git a/.github/workflows/source-build-gpu.yml b/.github/workflows/source-build-gpu.yml index b7b114d583..e959455ff7 100644 --- a/.github/workflows/source-build-gpu.yml +++ b/.github/workflows/source-build-gpu.yml @@ -218,7 +218,7 @@ jobs: - name: C++ build upload env: BUILD_NAME: ${{ matrix.ARCH }}-cuda12-gcc${{ matrix.GCC_VER }}-${{ matrix.BUILD_MODE }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: source-build-${{ env.BUILD_NAME }} # We have already compressed the artifact, no need for github to try and diff --git a/.github/workflows/source-test-cpu.yml b/.github/workflows/source-test-cpu.yml index b042c956b5..06319c0079 100644 --- a/.github/workflows/source-test-cpu.yml +++ b/.github/workflows/source-test-cpu.yml @@ -125,7 +125,7 @@ jobs: echo "${GITHUB_WORKSPACE}/gha-tools/tools" >> "${GITHUB_PATH}" - name: Download source build from the build job - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 env: BUILD_NAME: ${{ matrix.ARCH }}-gcc${{ matrix.GCC_VER }}-${{ matrix.BUILD_MODE }} with: diff --git a/.github/workflows/source-test-gpu.yml b/.github/workflows/source-test-gpu.yml index 916cf7f0bd..71a6b29fb9 100644 --- a/.github/workflows/source-test-gpu.yml +++ b/.github/workflows/source-test-gpu.yml @@ -131,7 +131,7 @@ jobs: echo "${GITHUB_WORKSPACE}/gha-tools/tools" >> "${GITHUB_PATH}" - name: Download source build from the build job - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 env: BUILD_NAME: ${{ matrix.ARCH }}-cuda12-gcc${{ matrix.GCC_VER }}-${{ matrix.BUILD_MODE }} with: diff --git a/.github/workflows/wheels-build.yml b/.github/workflows/wheels-build.yml index 13460d7fd0..6e16ce2301 100644 --- a/.github/workflows/wheels-build.yml +++ b/.github/workflows/wheels-build.yml @@ -149,7 +149,7 @@ jobs: - name: C++ wheel upload env: BUILD_NAME: ${{ matrix.ARCH }}-${{ matrix.TARGET_DEV }}-cuda12-py${{ matrix.PY_VER }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: legate-wheel-${{ env.BUILD_NAME }} path: final-dist/*.whl diff --git a/.github/workflows/wheels-mac.yml b/.github/workflows/wheels-mac.yml index e123d598cf..c201719a86 100644 --- a/.github/workflows/wheels-mac.yml +++ b/.github/workflows/wheels-mac.yml @@ -124,7 +124,7 @@ jobs: - name: Wheel upload env: BUILD_NAME: mac-arm64-py${{ matrix.PY_VER }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: wheel-${{ env.BUILD_NAME }} path: wheelhouse/*.whl diff --git a/.github/workflows/wheels-test.yml b/.github/workflows/wheels-test.yml index 7a11d13ad1..02388c4b4e 100644 --- a/.github/workflows/wheels-test.yml +++ b/.github/workflows/wheels-test.yml @@ -124,7 +124,7 @@ jobs: if: ${{ matrix.GPU != 'v100' && matrix.GPU != 'a100' }} - name: Download wheels from the build job - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 env: BUILD_NAME: ${{ matrix.ARCH }}-${{ matrix.TARGET_DEV }}-cuda12-py${{ matrix.PY_VER }} with: