From 428b0a9e9074cd1e654bf69abf521c058f7a047d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 11:01:25 +0000 Subject: [PATCH] Bump actions/download-artifact from 5 to 6 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/__deploy.yml | 4 ++-- .github/workflows/__sonarcloud.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/__deploy.yml b/.github/workflows/__deploy.yml index 80b06bbf..77dca499 100644 --- a/.github/workflows/__deploy.yml +++ b/.github/workflows/__deploy.yml @@ -38,7 +38,7 @@ jobs: if: inputs.release-tag != 'null' && !startsWith(inputs.deploy-to, 'submodule:') steps: - name: Download Artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: build-artifact-${{ inputs.environment }} path: dist/ @@ -79,7 +79,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download Artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: build-artifact-${{ inputs.environment }} path: dist/ diff --git a/.github/workflows/__sonarcloud.yml b/.github/workflows/__sonarcloud.yml index e63c1735..b820357e 100644 --- a/.github/workflows/__sonarcloud.yml +++ b/.github/workflows/__sonarcloud.yml @@ -33,7 +33,7 @@ jobs: - name: Download Coverage Report if: inputs.coverage-artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: ${{ inputs.coverage-artifact }} continue-on-error: true