@@ -26,10 +26,10 @@ jobs:
2626 # Steps represent a sequence of tasks that will be executed as part of the job
2727 steps :
2828 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
29- - uses : actions/checkout@v2
29+ - uses : actions/checkout@v3
3030
3131 # Make sure the stable version of Flutter is available
32- - uses : subosito/flutter-action@v1
32+ - uses : subosito/flutter-action@v2
3333 with :
3434 channel : ' stable'
3535
4040
4141 # Run Flutter Format to ensure formatting is valid
4242 - name : Run Flutter Format
43- run : flutter format --set-exit-if-changed .
43+ run : dart format --set-exit-if-changed .
4444 working-directory : ${{env.source-directory}}
4545
4646 analyze :
@@ -55,10 +55,10 @@ jobs:
5555 # Steps represent a sequence of tasks that will be executed as part of the job
5656 steps :
5757 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
58- - uses : actions/checkout@v2
58+ - uses : actions/checkout@v3
5959
6060 # Make sure the stable version of Flutter is available
61- - uses : subosito/flutter-action@v1
61+ - uses : subosito/flutter-action@v2
6262 with :
6363 channel : ' stable'
6464
@@ -85,15 +85,16 @@ jobs:
8585 # Steps represent a sequence of tasks that will be executed as part of the job
8686 steps :
8787 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
88- - uses : actions/checkout@v2
88+ - uses : actions/checkout@v3
8989
9090 # Ensure correct JAVA version is installed.
91- - uses : actions/setup-java@v1
91+ - uses : actions/setup-java@v3
9292 with :
93- java-version : ' 12.x'
93+ distribution : ' zulu'
94+ java-version : ' 17'
9495
9596 # Make sure the stable version of Flutter is available
96- - uses : subosito/flutter-action@v1
97+ - uses : subosito/flutter-action@v2
9798 with :
9899 channel : ' stable'
99100
@@ -120,10 +121,10 @@ jobs:
120121 # Steps represent a sequence of tasks that will be executed as part of the job
121122 steps :
122123 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
123- - uses : actions/checkout@v2
124+ - uses : actions/checkout@v3
124125
125126 # Make sure the stable version of Flutter is available
126- - uses : subosito/flutter-action@v1
127+ - uses : subosito/flutter-action@v2
127128 with :
128129 channel : ' stable'
129130
@@ -150,10 +151,10 @@ jobs:
150151 # Steps represent a sequence of tasks that will be executed as part of the job
151152 steps :
152153 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
153- - uses : actions/checkout@v2
154+ - uses : actions/checkout@v3
154155
155156 # Make sure the stable version of Flutter is available
156- - uses : subosito/flutter-action@v1
157+ - uses : subosito/flutter-action@v2
157158 with :
158159 channel : ' stable'
159160
@@ -185,10 +186,10 @@ jobs:
185186 # Steps represent a sequence of tasks that will be executed as part of the job
186187 steps :
187188 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
188- - uses : actions/checkout@v2
189+ - uses : actions/checkout@v3
189190
190191 # Make sure the stable version of Flutter is available
191- - uses : subosito/flutter-action@v1
192+ - uses : subosito/flutter-action@v2
192193 with :
193194 channel : ' stable'
194195
@@ -224,10 +225,10 @@ jobs:
224225 - run : sudo apt-get install -y ninja-build libgtk-3-dev libblkid-dev
225226
226227 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
227- - uses : actions/checkout@v2
228+ - uses : actions/checkout@v3
228229
229230 # Make sure the stable version of Flutter is available
230- - uses : subosito/flutter-action@v1
231+ - uses : subosito/flutter-action@v2
231232 with :
232233 channel : ' stable'
233234
@@ -264,10 +265,10 @@ jobs:
264265 # Steps represent a sequence of tasks that will be executed as part of the job
265266 steps :
266267 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
267- - uses : actions/checkout@v2
268+ - uses : actions/checkout@v3
268269
269270 # Make sure the stable version of Flutter is available
270- - uses : subosito/flutter-action@v1
271+ - uses : subosito/flutter-action@v2
271272 with :
272273 channel : ' stable'
273274
@@ -292,10 +293,10 @@ jobs:
292293 # Steps represent a sequence of tasks that will be executed as part of the job
293294 steps :
294295 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
295- - uses : actions/checkout@v2
296+ - uses : actions/checkout@v3
296297
297298 # Make sure the stable version of Flutter is available
298- - uses : subosito/flutter-action@v1
299+ - uses : subosito/flutter-action@v2
299300 with :
300301 channel : ' stable'
301302
@@ -310,8 +311,8 @@ jobs:
310311 working-directory : ${{env.source-directory}}
311312
312313 # Upload code coverage information
313- - uses : codecov/codecov-action@v1
314+ - uses : codecov/codecov-action@v3
314315 with :
315- file : ${{env.source-directory}}/coverage/lcov.info # optional
316- name : CacheManager # optional
317- fail_ci_if_error : true
316+ files : ${{env.source-directory}}/coverage/lcov.info
317+ name : CacheManager
318+ fail_ci_if_error : true
0 commit comments