File tree 1 file changed +5
-15
lines changed
1 file changed +5
-15
lines changed Original file line number Diff line number Diff line change @@ -15,24 +15,14 @@ jobs:
15
15
16
16
steps :
17
17
- name : Checkout repository
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
19
20
20
- name : Set up JDK 17
21
- uses : actions/setup-java@v3
21
+ uses : actions/setup-java@v4
22
22
with :
23
23
java-version : " 17"
24
24
distribution : " adopt"
25
-
26
- - name : Cache Gradle Wrapper and Dependencies
27
- uses : actions/cache@v3
28
- with :
29
- path : |
30
- ~/.gradle/caches
31
- ~/.gradle/wrapper
32
- key : ${{ runner.os }}-gradle-cache-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', '**/gradle/wrapper/gradle-wrapper.properties') }}
33
- restore-keys : |
34
- ${{ runner.os }}-gradle-cache-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', '**/gradle/wrapper/gradle-wrapper.properties') }}
35
- ${{ runner.os }}-gradle-cache-
25
+ cache : gradle
36
26
37
27
- name : Put keystore in place on filesystem to allow for signing builds
38
28
run : echo "${{ secrets.KEYSTORE_FILE }}" | openssl base64 -d -out /tmp/keystore
@@ -55,14 +45,14 @@ jobs:
55
45
SENTRY_AUTH_TOKEN : ${{ secrets.SENTRY_AUTH_TOKEN }}
56
46
57
47
- name : Upload AAB artifact to workflow
58
- uses : actions/upload-artifact@v3
48
+ uses : actions/upload-artifact@v4
59
49
with :
60
50
name : Release APK
61
51
if-no-files-found : error
62
52
path : ./app/build/outputs/apk/release/*.apk
63
53
64
54
- name : Upload APK artifact to workflow
65
- uses : actions/upload-artifact@v3
55
+ uses : actions/upload-artifact@v4
66
56
with :
67
57
name : Release AAB
68
58
if-no-files-found : error
You can’t perform that action at this time.
0 commit comments