From 814a46b88bbc9b16101f18c1fb4bfc316a6cae1f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 11:12:01 +0000 Subject: [PATCH] chore(deps): bump actions/download-artifact from 4 to 6 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...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.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a879edb..1d70518 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -183,7 +183,7 @@ jobs: suffix: '_${{ matrix.os }}-amd64' steps: - name: download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: artifacts pattern: '**/*${{ env.suffix }}' @@ -246,7 +246,7 @@ jobs: id: get-sha run: echo "short_sha=${GITHUB_SHA:0:8}" >> $GITHUB_OUTPUT - name: Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 - name: List files run: ls -laR . - name: Workaround - delete all files over 2G, above github release file upload limit