From 14f6d329af9f2224017296a043bd9f81af746de0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 07:42:52 +0000 Subject: [PATCH] chore(deps): bump actions/download-artifact from 7 to 8 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/buildandtest.yml | 8 ++++---- .github/workflows/e2e-v2.yml | 2 +- .github/workflows/sample-application.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/buildandtest.yml b/.github/workflows/buildandtest.yml index 845381b770..b25bcef213 100644 --- a/.github/workflows/buildandtest.yml +++ b/.github/workflows/buildandtest.yml @@ -186,12 +186,12 @@ jobs: - name: Install Dependencies run: yarn install - name: Download dist - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: dist path: packages/core/dist - name: Download ts3.8 - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: ts3.8 path: packages/core/ts3.8 @@ -217,12 +217,12 @@ jobs: - name: Install Dependencies run: yarn install - name: Download dist - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: dist path: packages/core/dist - name: Download Expo Plugin - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: expo-plugin path: packages/core/plugin/build diff --git a/.github/workflows/e2e-v2.yml b/.github/workflows/e2e-v2.yml index 8b9c6dd609..698f83239a 100644 --- a/.github/workflows/e2e-v2.yml +++ b/.github/workflows/e2e-v2.yml @@ -357,7 +357,7 @@ jobs: - name: Download App Package if: matrix.build-type == 'production' - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: ${{ matrix.rn-version }}-${{ matrix.rn-architecture }}-${{ matrix.engine }}-${{ matrix.platform }}-${{ matrix.build-type }}-${{ matrix.ios-use-frameworks }}-app-package path: dev-packages/e2e-tests diff --git a/.github/workflows/sample-application.yml b/.github/workflows/sample-application.yml index 9b64df36cf..de9c7daf40 100644 --- a/.github/workflows/sample-application.yml +++ b/.github/workflows/sample-application.yml @@ -236,14 +236,14 @@ jobs: - name: Download iOS App Archive if: ${{ matrix.platform == 'ios' }} - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: sample-rn-${{ matrix.rn-architecture }}-${{ matrix.build-type }}-${{ matrix.ios-use-frameworks}}-${{ matrix.platform }} path: ${{ env.REACT_NATIVE_SAMPLE_PATH }} - name: Download Android APK if: ${{ matrix.platform == 'android' }} - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: sample-rn-${{ matrix.rn-architecture }}-${{ matrix.build-type }}-${{ matrix.platform }} path: ${{ env.REACT_NATIVE_SAMPLE_PATH }}