diff --git a/.github/workflows/buildandtest.yml b/.github/workflows/buildandtest.yml index c3754b6dd6..1753e92d0f 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@v6 + uses: actions/download-artifact@v7 with: name: dist path: packages/core/dist - name: Download ts3.8 - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 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@v6 + uses: actions/download-artifact@v7 with: name: dist path: packages/core/dist - name: Download Expo Plugin - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: expo-plugin path: packages/core/plugin/build diff --git a/.github/workflows/e2e-v2.yml b/.github/workflows/e2e-v2.yml index decc401c34..aa177d5440 100644 --- a/.github/workflows/e2e-v2.yml +++ b/.github/workflows/e2e-v2.yml @@ -344,7 +344,7 @@ jobs: - name: Download App Package if: matrix.build-type == 'production' - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 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 3ae494a58e..235a839753 100644 --- a/.github/workflows/sample-application.yml +++ b/.github/workflows/sample-application.yml @@ -252,14 +252,14 @@ jobs: - name: Download iOS App Archive if: ${{ matrix.platform == 'ios' }} - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 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@v6 + uses: actions/download-artifact@v7 with: name: sample-rn-${{ matrix.rn-architecture }}-${{ matrix.build-type }}-${{ matrix.platform }} path: ${{ env.REACT_NATIVE_SAMPLE_PATH }}