16
16
runs-on : ubuntu-latest
17
17
steps :
18
18
- name : Checkout
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
21
21
- name : Setup
22
22
uses : ./.github/actions/setup
31
31
runs-on : ubuntu-latest
32
32
steps :
33
33
- name : Checkout
34
- uses : actions/checkout@v3
34
+ uses : actions/checkout@v4
35
35
36
36
- name : Setup
37
37
uses : ./.github/actions/setup
45
45
TURBO_CACHE_DIR : .turbo/android
46
46
steps :
47
47
- name : Checkout
48
- uses : actions/checkout@v3
48
+ uses : actions/checkout@v4
49
49
50
50
- name : Setup
51
51
uses : ./.github/actions/setup
54
54
run : yarn build
55
55
56
56
- name : Cache turborepo for Android
57
- uses : actions/cache@v3
57
+ uses : actions/cache@v4
58
58
with :
59
59
path : ${{ env.TURBO_CACHE_DIR }}
60
60
key : ${{ runner.os }}-turborepo-android-${{ hashFiles('yarn.lock') }}
71
71
72
72
- name : Install JDK
73
73
if : env.turbo_cache_hit != 1
74
- uses : actions/setup-java@v3
74
+ uses : actions/setup-java@v4
75
75
with :
76
76
distribution : ' zulu'
77
77
java-version : ' 17'
83
83
84
84
- name : Cache Gradle
85
85
if : env.turbo_cache_hit != 1
86
- uses : actions/cache@v3
86
+ uses : actions/cache@v4
87
87
with :
88
88
path : |
89
89
~/.gradle/wrapper
@@ -104,7 +104,7 @@ jobs:
104
104
TURBO_CACHE_DIR : .turbo/android-newarch
105
105
steps :
106
106
- name : Checkout
107
- uses : actions/checkout@v3
107
+ uses : actions/checkout@v4
108
108
109
109
- name : Setup
110
110
uses : ./.github/actions/setup
@@ -113,7 +113,7 @@ jobs:
113
113
run : yarn build
114
114
115
115
- name : Cache turborepo for Android new arch
116
- uses : actions/cache@v3
116
+ uses : actions/cache@v4
117
117
with :
118
118
path : ${{ env.TURBO_CACHE_DIR }}
119
119
key : ${{ runner.os }}-turborepo-android-newarch-${{ hashFiles('yarn.lock') }}
@@ -130,7 +130,7 @@ jobs:
130
130
131
131
- name : Install JDK
132
132
if : env.turbo_cache_hit != 1
133
- uses : actions/setup-java@v3
133
+ uses : actions/setup-java@v4
134
134
with :
135
135
distribution : ' zulu'
136
136
java-version : ' 17'
@@ -142,7 +142,7 @@ jobs:
142
142
143
143
- name : Cache Gradle
144
144
if : env.turbo_cache_hit != 1
145
- uses : actions/cache@v3
145
+ uses : actions/cache@v4
146
146
with :
147
147
path : |
148
148
~/.gradle/wrapper
@@ -163,7 +163,7 @@ jobs:
163
163
TURBO_CACHE_DIR : .turbo/ios
164
164
steps :
165
165
- name : Checkout
166
- uses : actions/checkout@v3
166
+ uses : actions/checkout@v4
167
167
168
168
- name : Setup
169
169
uses : ./.github/actions/setup
@@ -172,7 +172,7 @@ jobs:
172
172
run : yarn build
173
173
174
174
- name : Cache turborepo for iOS
175
- uses : actions/cache@v3
175
+ uses : actions/cache@v4
176
176
with :
177
177
path : ${{ env.TURBO_CACHE_DIR }}
178
178
key : ${{ runner.os }}-turborepo-ios-${{ hashFiles('yarn.lock') }}
@@ -207,7 +207,7 @@ jobs:
207
207
TURBO_CACHE_DIR : .turbo/ios-newarch
208
208
steps :
209
209
- name : Checkout
210
- uses : actions/checkout@v3
210
+ uses : actions/checkout@v4
211
211
212
212
- name : Setup
213
213
uses : ./.github/actions/setup
@@ -216,7 +216,7 @@ jobs:
216
216
run : yarn build
217
217
218
218
- name : Cache turborepo for iOS
219
- uses : actions/cache@v3
219
+ uses : actions/cache@v4
220
220
with :
221
221
path : ${{ env.TURBO_CACHE_DIR }}
222
222
key : ${{ runner.os }}-turborepo-ios-newarch-${{ hashFiles('yarn.lock') }}
@@ -251,7 +251,7 @@ jobs:
251
251
TURBO_CACHE_DIR : .turbo/macos
252
252
steps :
253
253
- name : Checkout
254
- uses : actions/checkout@v3
254
+ uses : actions/checkout@v4
255
255
256
256
- name : Setup
257
257
uses : ./.github/actions/setup
@@ -264,7 +264,7 @@ jobs:
264
264
brew install xcbeautify
265
265
266
266
- name : Cache turborepo for macOS
267
- uses : actions/cache@v3
267
+ uses : actions/cache@v4
268
268
with :
269
269
path : ${{ env.TURBO_CACHE_DIR }}
270
270
key : ${{ runner.os }}-turborepo-macos-${{ hashFiles('yarn.lock') }}
0 commit comments