Update Node LTS from 22 to 24 #833
Merged
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 both the CI workflow configuration and the Docker runtime environments to use more recent versions of key dependencies. The main changes include upgrading the
actions/checkoutGitHub Action and updates the default Node.js version used in the Dockerfiles for all PHP 8.x runtime images. The change ensures that each runtime now uses Node.js version 24 (Latest LTS https://nodejs.org/en/about/previous-releases) instead of version 22, keeping the environment up to date with the latest Node.js release.CI Workflow Updates:
actions/checkoutfrom version 5 to version 6 in.github/workflows/shellcheck.ymland.github/workflows/tests.ymlto ensure compatibility and benefit from the latest improvements. [1] [2]Docker Runtime Environment Updates:
NODE_VERSIONfrom 22 to 24 in all runtime Dockerfiles (runtimes/8.0/Dockerfile,runtimes/8.1/Dockerfile,runtimes/8.2/Dockerfile,runtimes/8.3/Dockerfile,runtimes/8.4/Dockerfile) to provide newer Node.js features and security updates. [1] [2] [3] [4] [5]