diff --git a/.github/workflows/build-android.yml b/.github/workflows/build-android.yml index 974c0a9b..c6436ec9 100644 --- a/.github/workflows/build-android.yml +++ b/.github/workflows/build-android.yml @@ -38,7 +38,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Restore node_modules from cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -51,7 +51,7 @@ jobs: run: yarn install --frozen-lockfile --cwd example - name: Restore Gradle cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index c6b16ab3..fc3df916 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -32,7 +32,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Restore node_modules from cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -54,7 +54,7 @@ jobs: working-directory: example/ios - name: Restore Pods cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | example/ios/Pods diff --git a/.github/workflows/validate-js.yml b/.github/workflows/validate-js.yml index 56231df9..6b73e2a9 100644 --- a/.github/workflows/validate-js.yml +++ b/.github/workflows/validate-js.yml @@ -42,7 +42,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Restore node_modules from cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -77,7 +77,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Restore node_modules from cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }}