From aa1a548bcdd9991643ed703422b702bc698045de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 03:15:08 +0000 Subject: [PATCH] chore(deps): bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-release-publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-release-publish.yml b/.github/workflows/build-release-publish.yml index e947766..fc0c496 100644 --- a/.github/workflows/build-release-publish.yml +++ b/.github/workflows/build-release-publish.yml @@ -104,21 +104,21 @@ jobs: - name: Download ubuntu artifacts if: steps.versionize.outcome == 'success' - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: binaries-ubuntu-latest path: ubuntu-artifacts - name: Download windows artifacts if: steps.versionize.outcome == 'success' - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: binaries-windows-latest path: windows-artifacts - name: Download macos artifacts if: steps.versionize.outcome == 'success' - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: binaries-macos-latest path: macos-artifacts