From a82ec456cb9eefe57aea5d86a68ef5e8066ee18a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 09:35:35 +0000 Subject: [PATCH] Bump actions/download-artifact from 5 to 6 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-artifacts.yml | 4 ++-- .github/workflows/git-artifacts.yml | 6 +++--- .github/workflows/test-ci-artifacts.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-artifacts.yml b/.github/workflows/ci-artifacts.yml index 42c11de167a..a0413c6aabb 100644 --- a/.github/workflows/ci-artifacts.yml +++ b/.github/workflows/ci-artifacts.yml @@ -103,12 +103,12 @@ jobs: needs: test-minimal-sdk steps: - name: download minimal-sdk artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: minimal-sdk path: ${{github.workspace}} - name: download minimal-sdk artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: minimal-sdk-extra path: ${{github.workspace}} diff --git a/.github/workflows/git-artifacts.yml b/.github/workflows/git-artifacts.yml index c4b0f4f17ac..dadaf2afabf 100644 --- a/.github/workflows/git-artifacts.yml +++ b/.github/workflows/git-artifacts.yml @@ -145,17 +145,17 @@ jobs: fail-fast: false steps: - name: Download pkg-${{env.ARCHITECTURE}} - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: pkg-${{env.ARCHITECTURE}} path: pkg-${{env.ARCHITECTURE}} - name: Download bundle-artifacts - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: bundle-artifacts path: bundle-artifacts - name: Download build-installers.tgz - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: build-installers.tgz - name: Configure Git for Windows SDK diff --git a/.github/workflows/test-ci-artifacts.yml b/.github/workflows/test-ci-artifacts.yml index b2d87700fec..3d1b009dadb 100644 --- a/.github/workflows/test-ci-artifacts.yml +++ b/.github/workflows/test-ci-artifacts.yml @@ -19,7 +19,7 @@ jobs: nr: [9, 6, 13, 0, 8, 5, 2, 16, 15, 11, 10, 1, 7, 3, 14, 12, 4] steps: - name: download minimal-sdk artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: minimal-sdk path: ${{github.workspace}} @@ -30,7 +30,7 @@ jobs: tar -C minimal-sdk -xzf git-sdk-aarch64-minimal.tar.gz && cygpath -aw minimal-sdk/usr/bin >>$GITHUB_PATH - name: download git artifacts - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: git-artifacts path: ${{github.workspace}} @@ -67,7 +67,7 @@ jobs: runs-on: windows-11-arm steps: - name: download minimal-sdk artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: minimal-sdk path: ${{github.workspace}}