From 118479fc6347e0aa95b870fd9fd2154a8bb927a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 06:28:56 +0000 Subject: [PATCH] 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/build.yml | 10 +++++----- .github/workflows/docker-deploy.yml | 4 ++-- .github/workflows/github-release.yml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 60674ff7..d9a51c47 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -360,31 +360,31 @@ jobs: dotnet-version: "10.x" - name: Download Agent (win-x86) - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: Agent-win-x86 path: ControlR.Web.Server/wwwroot/downloads/win-x86/ - name: Download Agent (win-x64) - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: Agent-win-x64 path: ControlR.Web.Server/wwwroot/downloads/win-x64/ - name: Download Agent (linux-x64) - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: Agent-linux-x64 path: ControlR.Web.Server/wwwroot/downloads/linux-x64/ - name: Download Agent (macOS ARM64) - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: Agent-macOS-ARM64 path: ControlR.Web.Server/wwwroot/downloads/osx-arm64/ - name: Download Agent (macOS x64) - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: Agent-macOS-x64 path: ControlR.Web.Server/wwwroot/downloads/osx-x64/ diff --git a/.github/workflows/docker-deploy.yml b/.github/workflows/docker-deploy.yml index 8de818b6..0f3a251b 100644 --- a/.github/workflows/docker-deploy.yml +++ b/.github/workflows/docker-deploy.yml @@ -42,7 +42,7 @@ jobs: GH_TOKEN: ${{ github.token }} - name: Download Server Artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: Server path: ./server-publish @@ -50,7 +50,7 @@ jobs: run-id: ${{ inputs.run_id || steps.get-run-id.outputs.run_id }} - name: Download docker-compose file - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: DockerCompose path: ./docker-compose-download diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index 54a38062..e949f292 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -37,7 +37,7 @@ jobs: GH_TOKEN: ${{ github.token }} - name: Download Server Artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: Server path: ./server-publish @@ -45,7 +45,7 @@ jobs: run-id: ${{ inputs.run_id || steps.get-run-id.outputs.run_id }} - name: Download docker-compose file - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: DockerCompose path: ./docker-compose-download