From 9350f5e85d09ad0cc4ab729521ba06d4de8a8fa0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Dec 2025 20:01:43 +0000 Subject: [PATCH] chore(deps): bump actions/download-artifact from 4 to 7 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...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/ci-develop.yml | 6 +++--- .github/workflows/ci-pr.yml | 4 ++-- .github/workflows/ci-version-tag.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-develop.yml b/.github/workflows/ci-develop.yml index 43100eb..c48c7fc 100644 --- a/.github/workflows/ci-develop.yml +++ b/.github/workflows/ci-develop.yml @@ -59,7 +59,7 @@ jobs: needs: build steps: - name: Download Build Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: latest-develop-artifact-${{ github.sha }} - name: Cache Yarn Dependencies @@ -98,7 +98,7 @@ jobs: needs: test steps: - name: Download Test Coverage Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: latest-develop-coverage-${{ github.sha }} - name: Archive Extension Coverage @@ -109,7 +109,7 @@ jobs: needs: test steps: - name: Download Build Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: latest-develop-artifact-${{ github.sha }} - name: Cache Yarn Dependencies diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index a9e0e3d..1ed4bef 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -59,7 +59,7 @@ jobs: needs: build steps: - name: Download Build Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: latest-develop-artifact-${{ github.sha }} - name: Cache Yarn Dependencies @@ -98,7 +98,7 @@ jobs: needs: test steps: - name: Download Test Coverage Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: latest-develop-coverage - name: Archive Extension Coverage diff --git a/.github/workflows/ci-version-tag.yml b/.github/workflows/ci-version-tag.yml index c74c4f3..bd50105 100644 --- a/.github/workflows/ci-version-tag.yml +++ b/.github/workflows/ci-version-tag.yml @@ -63,7 +63,7 @@ jobs: with: node-version: "18" - name: Download Build Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: latest-production-artifact - name: Cache Yarn Dependencies @@ -98,7 +98,7 @@ jobs: needs: test steps: - name: Download Test Coverage Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: latest-production-coverage-${{ github.sha }} - name: Archive Extension Coverage @@ -109,7 +109,7 @@ jobs: needs: test steps: - name: Download Build Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: latest-production-artifact - name: Cache Yarn Dependencies