Skip to content

Commit 6072ef4

Browse files
committed
fix(ci): bump actions
1 parent a860167 commit 6072ef4

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

.github/workflows/build_prod.yml

+5-15
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,14 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Set up JDK 17
21-
uses: actions/setup-java@v3
21+
uses: actions/setup-java@v4
2222
with:
2323
java-version: "17"
2424
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
3626

3727
- name: Put keystore in place on filesystem to allow for signing builds
3828
run: echo "${{ secrets.KEYSTORE_FILE }}" | openssl base64 -d -out /tmp/keystore
@@ -55,14 +45,14 @@ jobs:
5545
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
5646

5747
- name: Upload AAB artifact to workflow
58-
uses: actions/upload-artifact@v3
48+
uses: actions/upload-artifact@v4
5949
with:
6050
name: Release APK
6151
if-no-files-found: error
6252
path: ./app/build/outputs/apk/release/*.apk
6353

6454
- name: Upload APK artifact to workflow
65-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
6656
with:
6757
name: Release AAB
6858
if-no-files-found: error

0 commit comments

Comments
 (0)