Skip to content

BB-763 Update GitHub Actions to Node 24 runtime#2732

Open
JBWatenbergScality wants to merge 3 commits intodevelopment/9.3from
improvement/BB-763-update-github-actions-to-node24
Open

BB-763 Update GitHub Actions to Node 24 runtime#2732
JBWatenbergScality wants to merge 3 commits intodevelopment/9.3from
improvement/BB-763-update-github-actions-to-node24

Conversation

@JBWatenbergScality
Copy link
Copy Markdown

Summary

Update GitHub Actions workflow files to use action versions running on Node 24.

Closes BB-763

Context

GitHub is deprecating Node 20 as the JavaScript runtime for GitHub Actions runners:
https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/

Timeline:

  • June 2, 2026: Runners default to Node 24 (deprecation warnings)
  • Fall 2026: Node 20 completely removed

Changes

Updated action versions across all workflow files to Node 24-compatible versions:

  • actions/checkout@v4@v6
  • docker/setup-buildx-action@v3@v4
  • docker/login-action@v3@v4
  • softprops/action-gh-release@v2@v3
  • codecov/codecov-action@v4/@v5@v6

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
@bert-e
Copy link
Copy Markdown
Contributor

bert-e commented Apr 14, 2026

Hello jbwatenbergscality,

My role is to assist you with the merge of this
pull request. Please type @bert-e help to get information
on this process, or consult the user documentation.

Available options
name description privileged authored
/after_pull_request Wait for the given pull request id to be merged before continuing with the current one.
/bypass_author_approval Bypass the pull request author's approval
/bypass_build_status Bypass the build and test status
/bypass_commit_size Bypass the check on the size of the changeset TBA
/bypass_incompatible_branch Bypass the check on the source branch prefix
/bypass_jira_check Bypass the Jira issue check
/bypass_peer_approval Bypass the pull request peers' approval
/bypass_leader_approval Bypass the pull request leaders' approval
/approve Instruct Bert-E that the author has approved the pull request. ✍️
/create_pull_requests Allow the creation of integration pull requests.
/create_integration_branches Allow the creation of integration branches.
/no_octopus Prevent Wall-E from doing any octopus merge and use multiple consecutive merge instead
/unanimity Change review acceptance criteria from one reviewer at least to all reviewers
/wait Instruct Bert-E not to run until further notice.
Available commands
name description privileged
/help Print Bert-E's manual in the pull request.
/status Print Bert-E's current status in the pull request TBA
/clear Remove all comments from Bert-E from the history TBA
/retry Re-start a fresh build TBA
/build Re-start a fresh build TBA
/force_reset Delete integration branches & pull requests, and restart merge process from the beginning.
/reset Try to remove integration branches unless there are commits on them which do not appear on the source branch.

Status report is not available.

@bert-e
Copy link
Copy Markdown
Contributor

bert-e commented Apr 14, 2026

Incorrect fix version

The Fix Version/s in issue BB-763 contains:

  • None

Considering where you are trying to merge, I ignored possible hotfix versions and I expected to find:

  • 9.3.3

  • 9.4.0

Please check the Fix Version/s of BB-763, or the target
branch of this pull request.

@codecov
Copy link
Copy Markdown

codecov bot commented Apr 14, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 74.52%. Comparing base (79e1ace) to head (763393d).

Additional details and impacted files

Impacted file tree graph
see 5 files with indirect coverage changes

Components Coverage Δ
Bucket Notification 80.37% <ø> (ø)
Core Library 80.71% <ø> (+0.16%) ⬆️
Ingestion 70.53% <ø> (-0.62%) ⬇️
Lifecycle 79.01% <ø> (ø)
Oplog Populator 85.83% <ø> (ø)
Replication 59.65% <ø> (+0.03%) ⬆️
Bucket Scanner 85.76% <ø> (ø)
@@                 Coverage Diff                 @@
##           development/9.3    #2732      +/-   ##
===================================================
+ Coverage            74.50%   74.52%   +0.02%     
===================================================
  Files                  200      200              
  Lines                13610    13610              
===================================================
+ Hits                 10140    10143       +3     
+ Misses                3460     3457       -3     
  Partials                10       10              
Flag Coverage Δ
api:retry 9.14% <ø> (ø)
api:routes 8.96% <ø> (ø)
bucket-scanner 85.76% <ø> (ø)
ft_test:queuepopulator 10.02% <ø> (+0.96%) ⬆️
ingestion 12.49% <ø> (-0.06%) ⬇️
lib 7.61% <ø> (ø)
lifecycle 18.75% <ø> (-0.10%) ⬇️
notification 1.03% <ø> (ø)
oplogPopulator 0.14% <ø> (ø)
replication 18.48% <ø> (ø)
unit 51.11% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Comment thread .github/workflows/tests.yaml Outdated
uses: actions/checkout@v4
uses: actions/checkout@v6

- uses: actions/setup-go@v5
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

actions/setup-go@v5 was not updated. If a Node 24-compatible major version is available, it should be bumped here for consistency with the rest of the PR.

— Claude Code

@claude
Copy link
Copy Markdown

claude bot commented Apr 14, 2026

  • .github/actions/ft-test/action.yaml:30 still uses codecov/codecov-action@v5. This composite action is used by the functional-tests job, so those runs will still pull the old Node 20 version. Should be bumped to @v6 for consistency.
  • .github/workflows/tests.yaml:62: actions/setup-go@v5 was not updated. If a Node 24-compatible major version is available, it should be bumped here too.

Review by Claude Code

Comment thread .github/workflows/tests.yaml Outdated
uses: actions/checkout@v4
uses: actions/checkout@v6

- uses: actions/setup-go@v5
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

actions/setup-go@v5 still runs on Node 20. v6 is available and should be bumped here for consistency with the rest of this PR.

— Claude Code

@claude
Copy link
Copy Markdown

claude bot commented Apr 14, 2026

  • actions/setup-go@v5 in tests.yaml (line 62) was not bumped. The latest major version is v6, which runs on Node 24. This should be updated for consistency with the rest of the PR.
    - Update to actions/setup-go@v6
    - codecov/codecov-action@v5 in .github/actions/ft-test/action.yaml (line 30) was not updated. This composite action is used by the functional-tests job and will still run the old Node 20 version.
    - Update to codecov/codecov-action@v6 to match the other codecov bumps in this PR

    Review by Claude Code

- actions/setup-go: v5 → v6 (tests.yaml)
- codecov/codecov-action: v5 → v6 (ft-test/action.yaml)

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
@bert-e
Copy link
Copy Markdown
Contributor

bert-e commented Apr 14, 2026

Incorrect fix version

The Fix Version/s in issue BB-763 contains:

  • 9.3.3

Considering where you are trying to merge, I ignored possible hotfix versions and I expected to find:

  • 9.3.3

  • 9.4.0

Please check the Fix Version/s of BB-763, or the target
branch of this pull request.

@claude
Copy link
Copy Markdown

claude bot commented Apr 14, 2026

LGTM

Review by Claude Code

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.

2 participants