File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,17 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout code
15
- uses : actions/checkout@v2.4.0
15
+ uses : actions/checkout@v3
16
16
17
17
- name : Set up JDK
18
- uses : actions/setup-java@v2.5.0
18
+ uses : actions/setup-java@v3
19
19
with :
20
20
distribution : " temurin"
21
21
java-version : 11
22
22
23
23
- name : Cache packages
24
24
id : cache-packages
25
- uses : actions/cache@v2.1.7
25
+ uses : actions/cache@v3
26
26
with :
27
27
path : |
28
28
~/.gradle/caches
37
37
38
38
- name : AVD cache
39
39
if : github.event_name != 'pull_request'
40
- uses : actions/cache@v2
40
+ uses : actions/cache@v3
41
41
id : avd-cache
42
42
with :
43
43
path : |
89
89
run : bash ./gradlew assembleBetaDebug --stacktrace
90
90
91
91
- name : Upload betaDebug APK
92
- uses : actions/upload-artifact@v2.3.1
92
+ uses : actions/upload-artifact@v3
93
93
with :
94
94
name : betaDebugAPK
95
95
path : app/build/outputs/apk/beta/debug/app-*.apk
98
98
run : bash ./gradlew assembleProdDebug --stacktrace
99
99
100
100
- name : Upload prodDebug APK
101
- uses : actions/upload-artifact@v2.3.1
101
+ uses : actions/upload-artifact@v3
102
102
with :
103
103
name : prodDebugAPK
104
104
path : app/build/outputs/apk/prod/debug/app-*.apk
You can’t perform that action at this time.
0 commit comments