From ea13581ab40c00474a1251547747222c759eb8b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:25:28 +0000 Subject: [PATCH] ci(deps): bump actions/download-artifact from 6 to 7 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 6 to 7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 979fd72..85d663f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -131,12 +131,12 @@ jobs: runs-on: macos-latest steps: - name: Download macOS arm64 artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: build-artifacts-macos-arm64 path: arm64 - name: Download macOS x86_64 artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: build-artifacts-macos-x86_64 path: x86_64 @@ -175,7 +175,7 @@ jobs: echo "VERSION=$VERSION" >> $GITHUB_ENV - name: Download all build artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: path: dist