From 91b2478b4723ef9c4f35665948c90ec85e16482c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 14:54:44 +0000 Subject: [PATCH] Bump actions/download-artifact from 7.0.0 to 8.0.0 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7.0.0 to 8.0.0. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7.0.0...v8.0.0) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: 8.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 7ad4a2b..ed6dbd8 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@v7.0.0 + uses: actions/download-artifact@v8.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@v7.0.0 + uses: actions/download-artifact@v8.0.0 with: name: win-x64 path: ${{runner.temp}}/win-x64 - name: download linux-x64 build artifacts - uses: actions/download-artifact@v7.0.0 + uses: actions/download-artifact@v8.0.0 with: name: linux-x64 path: ${{runner.temp}}/linux-x64