Skip to content

Commit a306cb5

Browse files
feat: bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent cfb23ab commit a306cb5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build-apk-from-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
9898
# Upload the signed APK as an artifact
9999
- name: Upload APK as artifact
100-
uses: actions/upload-artifact@v4
100+
uses: actions/upload-artifact@v5
101101
with:
102102
name: owncloudSigned-latest
103103
path: ./owncloudSigned-latest.apk

.github/workflows/update.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
103103
# Upload the signed APK as an artifact
104104
- name: Upload APK as artifact
105-
uses: actions/upload-artifact@v4
105+
uses: actions/upload-artifact@v5
106106
with:
107107
name: owncloudSigned-${{ github.sha }}
108108
path: ./owncloudSigned-${{ github.sha }}.apk
@@ -183,7 +183,7 @@ jobs:
183183
# If crash happened, upload crash log
184184
- name: Upload crash log artifact
185185
if: always() && hashFiles('crash_log.txt') != ''
186-
uses: actions/upload-artifact@v4
186+
uses: actions/upload-artifact@v5
187187
with:
188188
name: crash-log
189189
path: crash_log.txt
@@ -197,15 +197,15 @@ jobs:
197197
# Upload log file
198198
- name: Upload Execution Log
199199
if: always()
200-
uses: actions/upload-artifact@v4
200+
uses: actions/upload-artifact@v5
201201
with:
202202
name: logs
203203
path: ./logs/log.log
204204

205205
# Upload appium log
206206
- name: Upload Appium Log
207207
if: always()
208-
uses: actions/upload-artifact@v4
208+
uses: actions/upload-artifact@v5
209209
with:
210210
name: appium
211211
path: ./appium.log
@@ -218,7 +218,7 @@ jobs:
218218
# Upload video file
219219
- name: Upload Video
220220
if: always()
221-
uses: actions/upload-artifact@v4
221+
uses: actions/upload-artifact@v5
222222
with:
223223
name: video-recording
224224
path: ./test-recording.zip

0 commit comments

Comments
 (0)