fix(publish): bump actions/upload-artifact to v4.6.2#317
Conversation
Greptile SummaryThis PR updates the
Confidence Score: 4/5Safe to merge — this is a single-line action version bump with a verified SHA, and the workflow logic is unchanged. The only change is bumping actions/upload-artifact from v4.2.4 to v4.6.2, and the new SHA correctly matches the tagged release. The one concern is that v4.6.2 still runs on Node.js 20, which GitHub is deprecating on June 2 2026, so this upgrade might need a follow-up soon. .github/workflows/publish.yml — specifically whether v4.6.2 is the right stopping point given the impending Node.js 20 end-of-life on GitHub Actions. Important Files Changed
Reviews (1): Last reviewed commit: "chore: update Command Line SDK to 21.0.0" | Re-trigger Greptile |
| - name: Upload unsigned Windows binaries | ||
| id: upload-windows-unsigned | ||
| uses: actions/upload-artifact@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 | ||
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 |
There was a problem hiding this comment.
actions/upload-artifact@v4.6.2 runs on Node.js 20, which GitHub Actions is deprecating and will force to Node.js 24 starting June 2 2026 (in ~18 days from today). This will trigger deprecation warnings now and may cause failures after the cutover. v6 is the first release that defaults to Node.js 24 — consider upgrading directly to it to avoid this entirely.
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v6.1.0 |
Re-release of 21.0.0 with the publish workflow fix from
appwrite/sdk-generator1.29.4.The previous release pipeline failed on the unsigned-windows upload step (
actions/upload-artifact@v4.2.4is deprecated). This bumps the pinned SHA to v4.6.2.Changes
.github/workflows/publish.yml:actions/upload-artifactSHA pin0400d5f(v4.2.4) →ea165f8(v4.6.2)No version bump or changelog changes — same 21.0.0 release.