@@ -26,12 +26,15 @@ jobs:
26
26
# Steps represent a sequence of tasks that will be executed as part of the job
27
27
steps :
28
28
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
29
- - uses : actions/checkout@v3
29
+ - uses : actions/checkout@v4
30
30
31
31
# Make sure the stable version of Flutter is available
32
- - uses : subosito/flutter-action@v2
32
+ - name : Set up Flutter
33
+ uses : subosito/flutter-action@v2
33
34
with :
34
35
channel : " stable"
36
+ architecture : x64
37
+ cache : true
35
38
36
39
# Download all Flutter packages
37
40
- name : Download dependencies
@@ -55,12 +58,15 @@ jobs:
55
58
# Steps represent a sequence of tasks that will be executed as part of the job
56
59
steps :
57
60
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
58
- - uses : actions/checkout@v3
61
+ - uses : actions/checkout@v4
59
62
60
63
# Make sure the stable version of Flutter is available
61
- - uses : subosito/flutter-action@v2
64
+ - name : Set up Flutter
65
+ uses : subosito/flutter-action@v2
62
66
with :
63
67
channel : " stable"
68
+ architecture : x64
69
+ cache : true
64
70
65
71
# Download all Flutter packages
66
72
- name : Download dependencies
85
91
# Steps represent a sequence of tasks that will be executed as part of the job
86
92
steps :
87
93
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
88
- - uses : actions/checkout@v3
94
+ - uses : actions/checkout@v4
89
95
90
96
# Ensure correct JAVA version is installed.
91
97
- uses : actions/setup-java@v3
@@ -94,9 +100,12 @@ jobs:
94
100
java-version : " 17"
95
101
96
102
# Make sure the stable version of Flutter is available
97
- - uses : subosito/flutter-action@v2
103
+ - name : Set up Flutter
104
+ uses : subosito/flutter-action@v2
98
105
with :
99
106
channel : " stable"
107
+ architecture : x64
108
+ cache : true
100
109
101
110
# Download all Flutter packages
102
111
- name : Download dependencies
@@ -121,12 +130,15 @@ jobs:
121
130
# Steps represent a sequence of tasks that will be executed as part of the job
122
131
steps :
123
132
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
124
- - uses : actions/checkout@v3
133
+ - uses : actions/checkout@v4
125
134
126
135
# Make sure the stable version of Flutter is available
127
- - uses : subosito/flutter-action@v2
136
+ - name : Set up Flutter
137
+ uses : subosito/flutter-action@v2
128
138
with :
129
139
channel : " stable"
140
+ architecture : x64
141
+ cache : true
130
142
131
143
# Download all Flutter packages
132
144
- name : Download dependencies
@@ -151,12 +163,15 @@ jobs:
151
163
# Steps represent a sequence of tasks that will be executed as part of the job
152
164
steps :
153
165
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
154
- - uses : actions/checkout@v3
166
+ - uses : actions/checkout@v4
155
167
156
168
# Make sure the stable version of Flutter is available
157
- - uses : subosito/flutter-action@v2
169
+ - name : Set up Flutter
170
+ uses : subosito/flutter-action@v2
158
171
with :
159
172
channel : " stable"
173
+ architecture : x64
174
+ cache : true
160
175
161
176
# Enable platform support
162
177
- name : Enable macOS
@@ -186,12 +201,15 @@ jobs:
186
201
# Steps represent a sequence of tasks that will be executed as part of the job
187
202
steps :
188
203
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
189
- - uses : actions/checkout@v3
204
+ - uses : actions/checkout@v4
190
205
191
206
# Make sure the stable version of Flutter is available
192
- - uses : subosito/flutter-action@v2
207
+ - name : Set up Flutter
208
+ uses : subosito/flutter-action@v2
193
209
with :
194
210
channel : " stable"
211
+ architecture : x64
212
+ cache : true
195
213
196
214
# Enable platform support
197
215
- name : Enable Windows
@@ -225,12 +243,15 @@ jobs:
225
243
- run : sudo apt-get install -y ninja-build libgtk-3-dev libblkid-dev
226
244
227
245
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
228
- - uses : actions/checkout@v3
246
+ - uses : actions/checkout@v4
229
247
230
248
# Make sure the stable version of Flutter is available
231
- - uses : subosito/flutter-action@v2
249
+ - name : Set up Flutter
250
+ uses : subosito/flutter-action@v2
232
251
with :
233
252
channel : " stable"
253
+ architecture : x64
254
+ cache : true
234
255
235
256
# Enable platform support
236
257
- name : Enable Linux
@@ -265,12 +286,15 @@ jobs:
265
286
# Steps represent a sequence of tasks that will be executed as part of the job
266
287
steps :
267
288
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
268
- - uses : actions/checkout@v3
289
+ - uses : actions/checkout@v4
269
290
270
291
# Make sure the stable version of Flutter is available
271
- - uses : subosito/flutter-action@v2
292
+ - name : Set up Flutter
293
+ uses : subosito/flutter-action@v2
272
294
with :
273
295
channel : " stable"
296
+ architecture : x64
297
+ cache : true
274
298
275
299
# Download all Flutter packages
276
300
- name : Download dependencies
@@ -293,12 +317,15 @@ jobs:
293
317
# Steps represent a sequence of tasks that will be executed as part of the job
294
318
steps :
295
319
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
296
- - uses : actions/checkout@v3
320
+ - uses : actions/checkout@v4
297
321
298
322
# Make sure the stable version of Flutter is available
299
- - uses : subosito/flutter-action@v2
323
+ - name : Set up Flutter
324
+ uses : subosito/flutter-action@v2
300
325
with :
301
326
channel : " stable"
327
+ architecture : x64
328
+ cache : true
302
329
303
330
# Download all Flutter packages
304
331
- name : Download dependencies
@@ -311,7 +338,7 @@ jobs:
311
338
working-directory : ${{env.source-directory}}
312
339
313
340
# Upload code coverage information
314
- - uses : codecov/codecov-action@v3
341
+ - uses : codecov/codecov-action@v4
315
342
with :
316
343
files : ${{env.source-directory}}/coverage/lcov.info
317
344
name : CachedNetworkImage (App Facing Package)
0 commit comments