Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci-graphite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
df -h

- name: Cache turborepo for Android
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-android-${{ hashFiles('yarn.lock') }}
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
echo "sdk.dir=$ANDROID_HOME" > $GITHUB_WORKSPACE/apps/example/android/local.properties

- name: Cache Gradle
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: |
~/.gradle/wrapper
Expand All @@ -93,7 +93,7 @@ jobs:
yarn turbo run build:android --concurrency 1

- name: Cache apk
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
env:
cache-name: cache-apk
with:
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

- name: Restore APK
id: cache-apk
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb
with:
path: apps/example/android/app/build/outputs/apk/debug/app-debug.apk
key: apk-graphite-${{ github.sha }}
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
graphite: true

- name: Cache turborepo for iOS
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-ios-${{ hashFiles('yarn.lock') }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
df -h

- name: Cache turborepo for Android
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-android-${{ hashFiles('yarn.lock') }}
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
echo "sdk.dir=$ANDROID_HOME" > $GITHUB_WORKSPACE/apps/example/android/local.properties

- name: Cache Gradle
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: |
~/.gradle/wrapper
Expand All @@ -208,7 +208,7 @@ jobs:
yarn turbo run build:android --concurrency 1

- name: Cache apk
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
env:
cache-name: cache-apk
with:
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:

- name: Restore APK
id: cache-apk
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb
with:
path: apps/example/android/app/build/outputs/apk/debug/app-debug.apk
key: apk-${{ github.sha }}
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Cache turborepo for iOS
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-ios-${{ hashFiles('yarn.lock') }}
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Cache turborepo for macOS
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-macos-${{ hashFiles('yarn.lock') }}
Expand Down
Loading