From dcdda5f1d7ac78ba81be22ec357f347fe7078308 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 14:27:27 +0000 Subject: [PATCH] Bump actions/download-artifact from 6.0.0 to 7.0.0 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 6.0.0 to 7.0.0. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6.0.0...v7.0.0) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-cd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 0c9d8b9..7ad4a2b 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -42,7 +42,7 @@ jobs: with: dotnet-version: "8.0" - name: download build artifacts - uses: actions/download-artifact@v6.0.0 + uses: actions/download-artifact@v7.0.0 with: name: ${{ matrix.os }} path: ${{runner.temp}}/${{ matrix.os }} @@ -56,12 +56,12 @@ jobs: - name: checkout uses: actions/checkout@v6 - name: download win-x64 build artifacts - uses: actions/download-artifact@v6.0.0 + uses: actions/download-artifact@v7.0.0 with: name: win-x64 path: ${{runner.temp}}/win-x64 - name: download linux-x64 build artifacts - uses: actions/download-artifact@v6.0.0 + uses: actions/download-artifact@v7.0.0 with: name: linux-x64 path: ${{runner.temp}}/linux-x64