From 740e8673bc21de8a03d97a2de565a96c8d5f2c5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 16:17:36 +0000 Subject: [PATCH] :arrow_up: Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/publish-app-store.yml | 4 ++-- .github/workflows/publish-play-store.yml | 4 ++-- .github/workflows/tests.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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}') }}