Skip to content

Commit 2e897e3

Browse files
authored
Merge pull request #30 from vc-teahouse/patch-1
fix:`actions/upload-artifact: v3` was deprecated.
2 parents 8c3c69c + 088999d commit 2e897e3

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/kernel.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ jobs:
306306
# tree ${{ env.OUT_DIR }}
307307
308308
- name: 💛 Upload Image
309-
uses: actions/upload-artifact@v3
309+
uses: actions/upload-artifact@v4
310310
env:
311311
ARCH: ${{ steps.generate-args.outputs.ARCH }}
312312
with:
@@ -316,7 +316,7 @@ jobs:
316316
retention-days: 7
317317

318318
- name: 💙 Upload Image.gz
319-
uses: actions/upload-artifact@v3
319+
uses: actions/upload-artifact@v4
320320
env:
321321
ARCH: ${{ steps.generate-args.outputs.ARCH }}
322322
with:
@@ -326,7 +326,7 @@ jobs:
326326
retention-days: 7
327327

328328
- name: 💙 Upload Image.gz-dtb
329-
uses: actions/upload-artifact@v3
329+
uses: actions/upload-artifact@v4
330330
env:
331331
ARCH: ${{ steps.generate-args.outputs.ARCH }}
332332
with:
@@ -336,7 +336,7 @@ jobs:
336336
retention-days: 7
337337

338338
- name: 💜 Upload dtb
339-
uses: actions/upload-artifact@v3
339+
uses: actions/upload-artifact@v4
340340
env:
341341
ARCH: ${{ steps.generate-args.outputs.ARCH }}
342342
with:
@@ -346,7 +346,7 @@ jobs:
346346
retention-days: 7
347347

348348
- name: ❤️ Upload dtbo.img
349-
uses: actions/upload-artifact@v3
349+
uses: actions/upload-artifact@v4
350350
env:
351351
ARCH: ${{ steps.generate-args.outputs.ARCH }}
352352
with:
@@ -356,7 +356,7 @@ jobs:
356356
retention-days: 7
357357

358358
- name: ☢️ Upload output directory
359-
uses: actions/upload-artifact@v3
359+
uses: actions/upload-artifact@v4
360360
env:
361361
ARCH: ${{ steps.generate-args.outputs.ARCH }}
362362
with:
@@ -409,7 +409,7 @@ jobs:
409409
- name: "💾 Upload AnyKernel3 image => (${{ env.BUILD_DATE }})"
410410
env:
411411
ANYKERNEL3_FILE: "AnyKernel3-${{ env.KERNEL_NAME }}-${{ env.BUILD_DATE }}"
412-
uses: actions/upload-artifact@v3
412+
uses: actions/upload-artifact@v4
413413
if: ${{ env.USE_ANYKERNEL3 == 'true' }}
414414
with:
415415
name: "${{ env.ANYKERNEL3_FILE }}"

.github/workflows/twrp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
lunch ${{ env.DEVICE_MAKEFILE }}-eng && mka adbd ${{ env.DEVICE_BOOT_PARTITION }}image
110110
111111
- name: ♎ Take the OrangeFox build
112-
uses: actions/upload-artifact@v3
112+
uses: actions/upload-artifact@v4
113113
with:
114114
name: OrangeFox
115115
if-no-files-found: warn

0 commit comments

Comments
 (0)