From 482bcf40ab0fd25f3ce150d0ce9e00f4fbb60501 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 14:21:58 +0000 Subject: [PATCH] chore(deps): bump actions/download-artifact from 4 to 5 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' 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 790b3fd..b4fe680 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -209,7 +209,7 @@ jobs: suffix: '_${{ matrix.os }}-amd64' steps: - name: download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: path: artifacts pattern: '**/*${{ env.suffix }}' @@ -272,7 +272,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@v5 - name: List files run: ls -laR . - name: Workaround - delete all files over 2G, above github release file upload limit