From c572ff57dd8f5a1ff4b92d63715a1b771363a6e0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 14:07:58 +0000 Subject: [PATCH] build(deps): 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/build.yaml | 10 +++++----- .github/workflows/ci.yaml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1a67c6a76..634c15fbf 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -162,19 +162,19 @@ jobs: steps: - name: Download assets - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: assets path: assets-dist - name: Download binary x86_64 - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: binary-x86_64-unknown-linux-gnu path: binary-x86_64 - name: Download binary aarch64 - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: binary-aarch64-unknown-linux-gnu path: binary-aarch64 @@ -320,7 +320,7 @@ jobs: - build-image steps: - name: Download the artifacts from the previous job - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: pattern: mas-cli-* path: artifacts @@ -382,7 +382,7 @@ jobs: .github/scripts - name: Download the artifacts from the previous job - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: pattern: mas-cli-* path: artifacts diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 33405f2b1..8ff33a2a1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -305,7 +305,7 @@ jobs: - uses: ./.github/actions/build-policies - name: Download archive - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: nextest-archive