Skip to content

Commit d0efbc3

Browse files
github: Upgrade to upload-artifact@v4
upload-artifact@v3 has meanwhile been removed.
1 parent 29ccf51 commit d0efbc3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ jobs:
119119
env:
120120
BUILD_TOOLS_VERSION: "34.0.0"
121121
- name: Upload APK
122-
uses: actions/upload-artifact@v3
122+
uses: actions/upload-artifact@v4
123123
with:
124124
name: android-apk
125125
path: ${{steps.sign_apk.outputs.signedReleaseFile}}
126126
- name: Upload ABB
127-
uses: actions/upload-artifact@v3
127+
uses: actions/upload-artifact@v4
128128
with:
129129
name: android-abb
130130
path: ${{steps.sign_aab.outputs.signedReleaseFile}}

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
needs: build
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/download-artifact@v3
17+
- uses: actions/download-artifact@v4
1818
- name: Get Version Tag
1919
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
2020
- name: Rename APK

0 commit comments

Comments
 (0)