Skip to content
Open
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
18 changes: 9 additions & 9 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
bun-version: latest

- name: Cache node_modules
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: node_modules
key: node-modules-${{ runner.os }}-${{ hashFiles('bun.lock') }}
Expand All @@ -113,7 +113,7 @@ jobs:
java-version: "17"

- name: Cache CocoaPods
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/Library/Caches/CocoaPods
Expand All @@ -124,7 +124,7 @@ jobs:

- name: Cache iOS simulator build
id: ios-build-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: apps/expo/build/PackRat-sim.tar.gz
key: ios-sim-${{ runner.os }}-${{ hashFiles('apps/expo/**', 'packages/**', 'bun.lock') }}
Expand All @@ -146,7 +146,7 @@ jobs:

- name: Cache Maestro CLI
id: maestro-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.maestro
key: maestro-${{ env.MAESTRO_VERSION }}-${{ runner.os }}
Expand Down Expand Up @@ -333,7 +333,7 @@ jobs:
bun-version: latest

- name: Cache node_modules
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: node_modules
key: node-modules-${{ runner.os }}-${{ hashFiles('bun.lock') }}
Expand All @@ -358,7 +358,7 @@ jobs:
java-version: "17"

- name: Cache Gradle
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.gradle/caches
Expand All @@ -369,7 +369,7 @@ jobs:

- name: Cache Maestro CLI
id: maestro-cache-android
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.maestro
key: maestro-${{ env.MAESTRO_VERSION }}-${{ runner.os }}
Expand All @@ -385,7 +385,7 @@ jobs:

- name: Cache Android APK build
id: android-build-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: apps/expo/build/PackRat.apk
key: android-apk-${{ runner.os }}-${{ hashFiles('apps/expo/**', 'packages/**', 'bun.lock') }}
Expand Down Expand Up @@ -413,7 +413,7 @@ jobs:
sudo udevadm trigger --name-match=kvm

- name: AVD cache
uses: actions/cache@v4
uses: actions/cache@v5
id: avd-cache
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
cache: true

- name: Cache node_modules
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: node_modules
key: node-modules-${{ runner.os }}-${{ hashFiles('bun.lock') }}
Expand Down
Loading