Skip to content

Commit 8ed0fb0

Browse files
⬆️ 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](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]>
1 parent 7a4f9c2 commit 8ed0fb0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/publish-app-store.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ jobs:
2929
yarn pods
3030
3131
- name: Cache CocoaPods repositories folder
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: ~/.cocoapods
3535
key: ${{ runner.os }}-pods-repos-${{ hashFiles('ios/Podfile.lock') }}
3636
restore-keys: |
3737
${{ runner.os }}-pods-repos-
3838
3939
- name: Cache CocoaPods caches folder
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: ~/Library/Caches/CocoaPods
4343
key: ${{ runner.os }}-pods-caches-${{ hashFiles('ios/Podfile.lock') }}

.github/workflows/publish-play-store.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ jobs:
7474
echo "LITTEN_UPLOAD_KEY_PASSWORD=${{ secrets.ANDROID_SIGNING_KEY_PASSWORD }}" >> ${{ env.KEYSTORE_PROPERTIES_PATH }}
7575
7676
- name: Cache Gradle Wrapper
77-
uses: actions/cache@v3
77+
uses: actions/cache@v4
7878
with:
7979
path: ~/.gradle/wrapper
8080
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('android/gradle/wrapper/gradle-wrapper.properties') }}
8181

8282
- name: Cache Gradle Dependencies
83-
uses: actions/cache@v3
83+
uses: actions/cache@v4
8484
with:
8585
path: ~/.gradle/caches
8686
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('android/gradle/wrapper/gradle-wrapper.properties') }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
# - name: Execute the firebase model tests
4343
# run: yarn test:firestore:integration
4444
- name: Cache firebase emulators
45-
uses: actions/cache@v3
45+
uses: actions/cache@v4
4646
with:
4747
path: ${{ env.FIREBASE_EMULATORS_PATH }}
4848
key: ${{ runner.os }}-firebase-emulators-${{ hashFiles('emulator-cache/*.{jar,zip}') }}

0 commit comments

Comments
 (0)