diff --git a/.github/workflows/publish-app-store.yml b/.github/workflows/publish-app-store.yml index d27fe21d..344df0f8 100644 --- a/.github/workflows/publish-app-store.yml +++ b/.github/workflows/publish-app-store.yml @@ -29,7 +29,7 @@ jobs: yarn pods - name: Cache CocoaPods repositories folder - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cocoapods key: ${{ runner.os }}-pods-repos-${{ hashFiles('ios/Podfile.lock') }} @@ -37,7 +37,7 @@ jobs: ${{ runner.os }}-pods-repos- - name: Cache CocoaPods caches folder - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/Library/Caches/CocoaPods key: ${{ runner.os }}-pods-caches-${{ hashFiles('ios/Podfile.lock') }} diff --git a/.github/workflows/publish-play-store.yml b/.github/workflows/publish-play-store.yml index 1b9c0f23..3e0b75a1 100644 --- a/.github/workflows/publish-play-store.yml +++ b/.github/workflows/publish-play-store.yml @@ -74,13 +74,13 @@ jobs: echo "LITTEN_UPLOAD_KEY_PASSWORD=${{ secrets.ANDROID_SIGNING_KEY_PASSWORD }}" >> ${{ env.KEYSTORE_PROPERTIES_PATH }} - name: Cache Gradle Wrapper - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.gradle/wrapper key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('android/gradle/wrapper/gradle-wrapper.properties') }} - name: Cache Gradle Dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-caches-${{ hashFiles('android/gradle/wrapper/gradle-wrapper.properties') }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5fd82be7..33880767 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -42,7 +42,7 @@ jobs: # - name: Execute the firebase model tests # run: yarn test:firestore:integration - name: Cache firebase emulators - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ env.FIREBASE_EMULATORS_PATH }} key: ${{ runner.os }}-firebase-emulators-${{ hashFiles('emulator-cache/*.{jar,zip}') }}