update all actions to latest versions#377
Merged
PolyMeilex merged 1 commit intoPolyMeilex:masterfrom Mar 28, 2026
Merged
Conversation
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.
This pull request updates the GitHub Actions workflows and composite actions to use the latest major versions of several commonly used GitHub Actions. The main goal is to improve security, stability, and compatibility by moving from version 4 to version 6 (or the latest available) for actions like
actions/checkout,actions/upload-artifact, and others.The most important changes include:
Workflow Actions Version Upgrades:
Updated all usages of
actions/checkoutfromv4tov6acrossbuild.yml,release.yml, anddocs.ymlworkflows for improved security and new features.Updated
actions/setup-nodeusage fromv4tov6in the documentation workflow for better Node.js environment setup.Updated
actions/configure-pagesfromv4tov6andactions/upload-pages-artifactfromv3tov4in the docs workflow for improved GitHub Pages integration.Updated
actions/deploy-pagesfromv4tov5in the docs deployment step.Composite Action Version Upgrades:
actions/upload-artifactin composite actions (.github/actions/*/action.yml) fromv4tov6to ensure artifacts are handled with the latest features and security patches.These updates help keep the CI/CD pipeline current and secure by leveraging the latest improvements and fixes in GitHub Actions.