From e4879f2e975282445ab66aebe8f77ce4ab44392a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:07:05 +0000 Subject: [PATCH] chore(deps): bump actions/download-artifact in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1ef40a..401425e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -127,22 +127,22 @@ jobs: release_name: ${{ steps.get_version.outputs.VERSION }} - name: Download Linux amd64 tarball - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: ${{ env.LINUX_AMD64_TARGET }} - name: Download Linux arm64 tarball - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: ${{ env.LINUX_ARM64_TARGET }} - name: Download Windows tarball - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: ${{ env.WINDOWS_TARGET }} - name: Download MacOS tarball - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: ${{ env.MACOS_TARGET }}