From 0bc4862b341765df2bc8759868775edb8311fe14 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 13:18:57 +0000 Subject: [PATCH] ci(deps): bump actions/download-artifact from 4 to 5 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/advanced-deployment.yml | 2 +- .github/workflows/ci-cd-old.yml | 4 ++-- .github/workflows/ci-cd.yml | 4 ++-- .github/workflows/e2e-tests.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/advanced-deployment.yml b/.github/workflows/advanced-deployment.yml index 5a597b4..e00569d 100644 --- a/.github/workflows/advanced-deployment.yml +++ b/.github/workflows/advanced-deployment.yml @@ -164,7 +164,7 @@ jobs: uses: actions/checkout@v4 - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: build-${{ github.event.inputs.environment }} path: ./ diff --git a/.github/workflows/ci-cd-old.yml b/.github/workflows/ci-cd-old.yml index 1b5f3be..4294ef6 100644 --- a/.github/workflows/ci-cd-old.yml +++ b/.github/workflows/ci-cd-old.yml @@ -322,7 +322,7 @@ jobs: cache: 'npm' - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: dist path: dist/ @@ -391,7 +391,7 @@ jobs: cache: 'npm' - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: dist path: dist/ diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index da382bc..ed1c170 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -361,7 +361,7 @@ jobs: uses: actions/checkout@v4 - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: dist-${{ github.sha }} path: dist/ @@ -407,7 +407,7 @@ jobs: uses: actions/checkout@v4 - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: dist-${{ github.sha }} path: dist/ diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index e264ee0..1f2daed 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -157,7 +157,7 @@ jobs: steps: - name: Download all E2E results - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: pattern: e2e-results-* merge-multiple: true