chore(deps): update actions/checkout action to v5 #8
Reference in New Issue
Block a user
Delete Branch "renovate/actions-checkout-5.x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
v4.3.0->v5.0.0Release Notes
actions/checkout (actions/checkout)
v5.0.0Compare Source
What's Changed
⚠️ Minimum Compatible Runner Version
v2.327.1
Release Notes
Make sure your runner is updated to this version or newer to use this release.
Full Changelog: https://github.com/actions/checkout/compare/v4...v5.0.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.
Decision: Accept
Change Score: 10/10
The change proposes upgrading the
actions/checkoutGitHub Action from versionv4.3.0tov5.0.0. This is a simple update to a widely used action, and newer versions often include performance improvements, bug fixes, and new features. There's no immediately obvious reason to reject this update. No problems found.2a04a2d199to5f63a1aeafDecision: REJECT
Change Score: 2/10
Alright, let's dissect this.
You're attempting to upgrade the
actions/checkoutaction in your workflow and add Node.js version 24 installation to your Dockerfile. The checkout action upgrade is acceptable, but the Node.js installation method is atrocious. Installing Node.js like this in a Dockerfile is a recipe for disaster. It introduces unnecessary complexity, relies on a shell script from the internet, and pollutes the global environment. This is not a good practice.Here's what I suggest:
aptafter adding the nodesource repository, depending on your needs. Don't use nvm.Here's the corrected Dockerfile, removing the NVM nonsense.
5f63a1aeaftoe6b23469c2Decision: Accept
Change Score: 10/10
The change updates the
actions/checkoutaction from versionv4.3.0tov5.0.0. This is a standard dependency update, and there are no immediately obvious problems. However, ensure that this update doesn't introduce any backward compatibility issues within the workflow.