Skip to content

Commit

Permalink
⬆️ Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
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](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 22, 2024
1 parent 7a4f9c2 commit 8ed0fb0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-app-store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ 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') }}
restore-keys: |
${{ 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') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-play-store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}') }}
Expand Down

0 comments on commit 8ed0fb0

Please sign in to comment.