File tree 5 files changed +12
-12
lines changed
5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 5
5
using : composite
6
6
steps :
7
7
- name : Setup Node.js
8
- uses : actions/setup-node@v3
8
+ uses : actions/setup-node@v4
9
9
with :
10
10
node-version-file : .nvmrc
11
11
12
12
- name : Cache dependencies
13
13
id : yarn-cache
14
- uses : actions/cache@v3
14
+ uses : actions/cache@v4
15
15
with :
16
16
path : |
17
17
**/node_modules
Original file line number Diff line number Diff line change 88
88
89
89
steps :
90
90
- name : Checkout
91
- uses : actions/checkout@v3
91
+ uses : actions/checkout@v4
92
92
93
93
- name : Setup
94
94
uses : ./.github/actions/setup
@@ -117,7 +117,7 @@ jobs:
117
117
118
118
- name : Cache dependencies of library
119
119
id : library-yarn-cache
120
- uses : actions/cache@v3
120
+ uses : actions/cache@v4
121
121
with :
122
122
path : |
123
123
${{ env.work_dir }}/**/node_modules
@@ -153,7 +153,7 @@ jobs:
153
153
154
154
- name : Cache turborepo
155
155
if : env.android_build == 1 || env.ios_build == 1
156
- uses : actions/cache@v3
156
+ uses : actions/cache@v4
157
157
with :
158
158
path : |
159
159
${{ env.work_dir }}/.turbo
@@ -204,7 +204,7 @@ jobs:
204
204
205
205
- name : Install JDK
206
206
if : env.android_build == 1 && env.turbo_cache_hit_android != 1
207
- uses : actions/setup-java@v3
207
+ uses : actions/setup-java@v4
208
208
with :
209
209
distribution : ' zulu'
210
210
java-version : ' 17'
@@ -216,7 +216,7 @@ jobs:
216
216
217
217
- name : Cache Gradle
218
218
if : env.android_build == 1 && env.turbo_cache_hit_android != 1
219
- uses : actions/cache@v3
219
+ uses : actions/cache@v4
220
220
with :
221
221
path : |
222
222
~/.gradle/wrapper
@@ -236,7 +236,7 @@ jobs:
236
236
- name : Cache cocoapods
237
237
if : env.ios_build == 1 && env.turbo_cache_hit_ios != 1
238
238
id : library-cocoapods-cache
239
- uses : actions/cache@v3
239
+ uses : actions/cache@v4
240
240
with :
241
241
path : |
242
242
${{ env.work_dir }}/**/ios/Pods
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
17
17
- name : Setup
18
18
uses : ./.github/actions/setup
Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- name : Checkout
16
- uses : actions/checkout@v3
16
+ uses : actions/checkout@v4
17
17
18
18
- name : Setup
19
19
uses : ./.github/actions/setup
20
20
21
21
- name : Cache build
22
- uses : actions/cache@v3
22
+ uses : actions/cache@v4
23
23
with :
24
24
path : |
25
25
docs/.next/cache
Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v4
14
14
with :
15
15
fetch-depth : 0
16
16
You can’t perform that action at this time.
0 commit comments