Skip to content

Commit 4ba7f0c

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] <[email protected]>
1 parent 9845435 commit 4ba7f0c

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
@@ -100,7 +100,7 @@ jobs:
100100
101101
# Upload the signed APK as an artifact
102102
- name: Upload APK as artifact
103-
uses: actions/upload-artifact@v4
103+
uses: actions/upload-artifact@v5
104104
with:
105105
name: owncloudSigned-${{ github.sha }}
106106
path: ./owncloudSigned-${{ github.sha }}.apk
@@ -181,7 +181,7 @@ jobs:
181181
# If crash happened, upload crash log
182182
- name: Upload crash log artifact
183183
if: always() && hashFiles('crash_log.txt') != ''
184-
uses: actions/upload-artifact@v4
184+
uses: actions/upload-artifact@v5
185185
with:
186186
name: crash-log
187187
path: crash_log.txt
@@ -195,15 +195,15 @@ jobs:
195195
# Upload log file
196196
- name: Upload Execution Log
197197
if: always()
198-
uses: actions/upload-artifact@v4
198+
uses: actions/upload-artifact@v5
199199
with:
200200
name: logs
201201
path: ./logs/log.log
202202

203203
# Upload appium log
204204
- name: Upload Appium Log
205205
if: always()
206-
uses: actions/upload-artifact@v4
206+
uses: actions/upload-artifact@v5
207207
with:
208208
name: appium
209209
path: ./appium.log
@@ -216,7 +216,7 @@ jobs:
216216
# Upload video file
217217
- name: Upload Video
218218
if: always()
219-
uses: actions/upload-artifact@v4
219+
uses: actions/upload-artifact@v5
220220
with:
221221
name: video-recording
222222
path: ./test-recording.zip

0 commit comments

Comments
 (0)