Skip to content

Commit

Permalink
chore: upgrade to cache v4
Browse files Browse the repository at this point in the history
  • Loading branch information
linonetwo committed Feb 11, 2025
1 parent ec0e726 commit 92c68d4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-aab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
Expand All @@ -70,8 +70,8 @@ jobs:
run: pnpm exec zx scripts/fix-gradle.mjs

## configure cash for gradle : will help to reduce build time
- name: Cache Gradle Wrapper and Dependencies
uses: actions/cache@v2
- uses: actions/cache@v4
name: Cache Gradle Wrapper and Dependencies
with:
path: |
~/.gradle/caches
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-apk-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:
run: npx zx scripts/fix-gradle.mjs

## configure cash for gradle : will help to reduce build time
- name: Cache Gradle Wrapper and Dependencies
uses: actions/cache@v2
- uses: actions/cache@v4
name: Cache Gradle Wrapper and Dependencies
with:
path: |
~/.gradle/caches
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
Expand All @@ -70,8 +70,8 @@ jobs:
run: pnpm exec zx scripts/fix-gradle.mjs

## configure cash for gradle : will help to reduce build time
- name: Cache Gradle Wrapper and Dependencies
uses: actions/cache@v2
- uses: actions/cache@v4
name: Cache Gradle Wrapper and Dependencies
with:
path: |
~/.gradle/caches
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ipa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
Expand Down

0 comments on commit 92c68d4

Please sign in to comment.