Browse Source

ci: bump actions/upload-artifact from v4 to v7 (Node 20 deprecation)

upload-artifact@v4 targets Node 20, which GitHub is deprecating and now
forces onto Node 24, emitting a warning on every list-manager-apks and
publish-manager-artifacts run. These were the only two remaining @v4 uses;
bump to @v7 to match the rest of the workflows.
TheWildJames 2 tuần trước cách đây
mục cha
commit
9733b66839
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      .github/workflows/main.yml

+ 2 - 2
.github/workflows/main.yml

@@ -512,7 +512,7 @@ jobs:
           echo "Found $(wc -l < "$MANIFEST") manager APKs"
           ls -1 "$OUT_APKS"
       - name: Upload all manager APKs as one cross-blob
-        uses: actions/upload-artifact@v4
+        uses: actions/upload-artifact@v7
         with:
           name: manager-apks
           path: manager_apks/
@@ -537,7 +537,7 @@ jobs:
           merge-multiple: true
 
       - name: Upload ${{ matrix.item.apk }} as its own artifact
-        uses: actions/upload-artifact@v4
+        uses: actions/upload-artifact@v7
         with:
           name: manager-apk-${{ matrix.item.apk }}
           path: manager_apks/${{ matrix.item.apk }}