ci: bump deploy actions to Node 24-compatible versions#1
Open
Nozzit wants to merge 1 commit into
Open
Conversation
GitHub forces Actions onto the Node 24 runtime on 2026-06-16 and removes Node 20 on 2026-09-16. Bump every action in the reusable deploy workflows to the lowest major that defaults to Node 24, to clear the deprecation without pulling in unrelated behavioural changes: - actions/checkout v4 -> v5 - actions/setup-node v4 -> v5 - actions/upload-artifact v4 -> v6 (v5 still defaults to Node 20) - actions/download-artifact v4 -> v7 (v8 adds hash-mismatch=error) - actions/upload-pages-artifact v3 -> v5 - actions/deploy-pages v4 -> v5 - webfactory/ssh-agent v0.9.0 -> v0.10.0 Usage here is name/path uploads and download-by-name, so none of the documented breaking changes (by-ID download paths, direct/unzipped uploads) apply. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Waarom
GitHub forceert Actions op de Node 24-runtime vanaf 16 juni 2026 en verwijdert Node 20 op 16 september 2026. De reusable deploy-workflows draaien nu nog op Node 20-actions (
checkout@v4,setup-node@v4,upload-artifact@v4,download-artifact@v4,webfactory/ssh-agent@v0.9.0, plusupload-pages-artifact@v3/deploy-pages@v4in de pages-variant). Elke consumer van deze workflows — o.a.open-planner-studio— krijgt daardoor deprecation-warnings en loopt na 16 juni risico.Wat
Bump naar de laagste major die standaard Node 24 draait, zodat de deprecation verdwijnt zonder ongerelateerde gedragswijzigingen mee te nemen:
actions/checkoutactions/setup-nodeactions/upload-artifactactions/download-artifactactions/upload-pages-artifactactions/deploy-pageswebfactory/ssh-agentBewust geen latest-major
upload-artifact@v5draait standaard nog op Node 20 (alleen "preliminary" v24-support) → daarom v6, de eerste die default Node 24 draait.download-artifact@v8maakthash-mismatchstandaard een error (i.p.v. warning) → op een productie-deploy vermijd ik die nieuwe faalmodus en pak ik v7 (eerste Node 24-default).upload-pages-artifact@v5is een composite action die internupload-artifact@v7.0.0(Node 24) pint — geverifieerd schoon.Breaking changes raken deze usage niet
De workflows uploaden/downloaden op
name+path(geen download-by-ID, geenarchive: false-directe uploads), dus de gedocumenteerde breaking changes van deze majors (afwijkende by-ID-paden, niet-gezipte directe uploads) zijn hier niet van toepassing.Verificatie
@v4/@v3/@v0.9.0meer aanwezig.runs.using: node24via de action-repos.🤖 Generated with Claude Code