diff --git a/.github/workflows/buildandtest.yml b/.github/workflows/buildandtest.yml index 0a5757e880..6051b6e548 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 0c77aa7355..4fbae38ed4 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 91b04c5786..64ee96e7f9 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 }}