Skip to content

chore(deps): update actions/checkout action to v5#944

Open
ham-renovate wants to merge 1 commit intomainfrom
renovate/actions-checkout-5.x
Open

chore(deps): update actions/checkout action to v5#944
ham-renovate wants to merge 1 commit intomainfrom
renovate/actions-checkout-5.x

Conversation

@ham-renovate
Copy link
Copy Markdown
Collaborator

@ham-renovate ham-renovate commented Apr 4, 2026

This PR contains the following updates:

Package Type Update Change
actions/checkout action major v4v5

Release Notes

actions/checkout (actions/checkout)

v5

Compare Source


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 becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@ham-renovate ham-renovate requested a review from coodos as a code owner April 4, 2026 08:04
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Apr 4, 2026

📝 Walkthrough

Walkthrough

This PR updates GitHub Actions workflows across the repository to use actions/checkout@v5 instead of actions/checkout@v4. The version bump is applied consistently across 10 workflow files with no changes to workflow logic, job configuration, or execution steps.

Changes

Cohort / File(s) Summary
Main Workflows
.github/workflows/build.yml, .github/workflows/check-code.yml, .github/workflows/check-format.yml, .github/workflows/docusaurus.yml, .github/workflows/tests-evault-core-e2e.yml, .github/workflows/tests-evault-core.yml, .github/workflows/tests-registry.yml, .github/workflows/tests-w3id.yml, .github/workflows/tests-wallet-sdk.yml, .github/workflows/tests-web3-adapter.yml
Upgraded actions/checkout from v4 to v5 in each workflow's checkout step.
Platform Workflows
platforms/blabsy/client/.github/workflows/deployment.yaml
Upgraded actions/checkout from v4 to v5 across three jobs (prettier, eslint, jest).

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Suggested reviewers

  • coodos

Poem

🐰 A checkout so new, version five it shall be,
No more v4, just a hop and we're free!
Ten workflows dance, all in harmony,
Updated with grace, a dependency spree! 🎉

🚥 Pre-merge checks | ✅ 2 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Description check ❓ Inconclusive The description is missing required template sections (Issue Number, Type of change, How the change has been tested, Change checklist) but includes relevant context about the dependency update from Renovate Bot. Add the missing template sections: specify Type of change as 'Chore', include testing information, and complete the change checklist to match the repository's required PR description template.
✅ Passed checks (2 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely summarizes the main change: updating the actions/checkout GitHub Action from v4 to v5 across multiple workflows.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch renovate/actions-checkout-5.x

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In @.github/workflows/tests-evault-core.yml:
- Line 17: The workflow currently uses actions/checkout@v5 which requires GitHub
Actions Runner v2.327.1+ due to Node.js 24; verify target runners meet that
minimum or switch to a compatible checkout version. Either ensure all
self-hosted runners are upgraded to v2.327.1 or later, or change the step from
actions/checkout@v5 to a prior compatible tag (e.g., actions/checkout@v4) to
avoid the "Parameter 'using: node24' is not supported" failure; update the
workflow accordingly and document the required runner version if you keep `@v5`.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 899c47de-c452-4521-8b5d-f687dc0db83e

📥 Commits

Reviewing files that changed from the base of the PR and between a096cf6 and e28b98e.

📒 Files selected for processing (11)
  • .github/workflows/build.yml
  • .github/workflows/check-code.yml
  • .github/workflows/check-format.yml
  • .github/workflows/docusaurus.yml
  • .github/workflows/tests-evault-core-e2e.yml
  • .github/workflows/tests-evault-core.yml
  • .github/workflows/tests-registry.yml
  • .github/workflows/tests-w3id.yml
  • .github/workflows/tests-wallet-sdk.yml
  • .github/workflows/tests-web3-adapter.yml
  • platforms/blabsy/client/.github/workflows/deployment.yaml

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🌐 Web query:

What are the breaking changes between actions/checkout@v4 and actions/checkout@v5? Does actions/checkout@v5 exist?

💡 Result:

Yes, actions/checkout@v5 exists, released in August 2025 as v5.0.0 with subsequent v5.0.1. The primary change from v4 to v5 is updating the runtime from Node.js 20 to Node.js 24 (action.yml: using: 'node24'). This is a major version bump due to the Node.js upgrade. Breaking changes/potential compatibility issues: - Requires GitHub Actions Runner version v2.327.1 or later, as Node.js 24 is not supported on older runners. Users on outdated self-hosted runners may see errors like "Parameter 'using: node24' is not supported". - No other functional changes to inputs, outputs, or checkout behavior are mentioned in changelog, diffs, or README. Core functionality remains the same; the Node upgrade may indirectly affect performance or dependencies but no explicit breaking behavior changes. Sources confirm via official repo README, CHANGELOG.md, release PRs, and compare views.

Citations:


Verify actions/checkout@v5 runner compatibility.

actions/checkout@v5 exists and is stable (released August 2025). However, it has a breaking change: it requires GitHub Actions Runner v2.327.1 or later due to the Node.js 24 runtime upgrade. If this workflow runs on self-hosted runners older than v2.327.1, it will fail with "Parameter 'using: node24' is not supported". Confirm that all target runners meet this minimum version requirement.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.github/workflows/tests-evault-core.yml at line 17, The workflow currently
uses actions/checkout@v5 which requires GitHub Actions Runner v2.327.1+ due to
Node.js 24; verify target runners meet that minimum or switch to a compatible
checkout version. Either ensure all self-hosted runners are upgraded to v2.327.1
or later, or change the step from actions/checkout@v5 to a prior compatible tag
(e.g., actions/checkout@v4) to avoid the "Parameter 'using: node24' is not
supported" failure; update the workflow accordingly and document the required
runner version if you keep `@v5`.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant