From 79934a8ea1997a7b04543adecf3bd9092bacf071 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 07:38:21 +0000 Subject: [PATCH] chore(deps): 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/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 486867ba46..f824d61a0b 100644 --- a/.github/workflows/buildandtest.yml +++ b/.github/workflows/buildandtest.yml @@ -166,12 +166,12 @@ jobs: - name: Install Dependencies run: yarn install - name: Download dist - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: dist path: packages/core/dist - name: Download ts3.8 - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: ts3.8 path: packages/core/ts3.8 @@ -197,12 +197,12 @@ jobs: - name: Install Dependencies run: yarn install - name: Download dist - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: dist path: packages/core/dist - name: Download Expo Plugin - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: expo-plugin path: packages/core/plugin/build diff --git a/.github/workflows/e2e-v2.yml b/.github/workflows/e2e-v2.yml index 4560d90c72..15cf75697f 100644 --- a/.github/workflows/e2e-v2.yml +++ b/.github/workflows/e2e-v2.yml @@ -350,7 +350,7 @@ jobs: - name: Download App Package if: matrix.build-type == 'production' - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 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 7592a08077..5da750bd4c 100644 --- a/.github/workflows/sample-application.yml +++ b/.github/workflows/sample-application.yml @@ -243,14 +243,14 @@ jobs: - name: Download iOS App Archive if: ${{ matrix.platform == 'ios' }} - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 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@v5 + uses: actions/download-artifact@v6 with: name: sample-rn-${{ matrix.rn-architecture }}-${{ matrix.build-type }}-${{ matrix.platform }} path: ${{ env.REACT_NATIVE_SAMPLE_PATH }}