Skip to content

ci: update GitHub Actions pins for Node 24 - #7395

Merged
PastaPastaPasta merged 1 commit into
dashpay:developfrom
thepastaclaw:ci/node24-actions-dashpay
Jul 1, 2026
Merged

ci: update GitHub Actions pins for Node 24#7395
PastaPastaPasta merged 1 commit into
dashpay:developfrom
thepastaclaw:ci/node24-actions-dashpay

Conversation

@thepastaclaw

Copy link
Copy Markdown

CI action Node 24 pins

Issue being fixed or feature implemented

GitHub Actions now warns that actions targeting Node.js 20 are deprecated and
are being forced to run on Node.js 24. Dash Core develop already has most of
the action updates, but a few workflows still pin older JavaScript action
versions.

What was done?

Updated the remaining workflow action pins to Node 24-compatible versions:

  • eps1lon/actions-label-merge-conflict@v3.1.0
  • actions/github-script@v8
  • amannn/action-semantic-pull-request@v6

Also replaced the deprecated actions-ecosystem/action-add-labels@v1 usage in
the merge-check workflow with actions/github-script@v8, and granted the
minimal issues: write permission needed for PR labels/comments.

How Has This Been Tested?

  • git diff --check upstream/develop..HEAD
  • Parsed all workflow YAML files with Ruby YAML.load_file
  • Searched .github/workflows for the deprecated action pins that triggered the
    warning
  • Ran the pre-PR code review gate; result: ship

Breaking Changes

None.

Checklist

  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have added or updated relevant unit/integration/functional/e2e tests
  • I have made corresponding changes to the documentation
  • I have assigned this pull request to a milestone

@github-actions

Copy link
Copy Markdown

✅ No Merge Conflicts Detected

This PR currently has no conflicts with other open PRs.

@thepastaclaw

thepastaclaw commented Jun 30, 2026

Copy link
Copy Markdown
Author

✅ Review complete (commit eb1857a)

@thepastaclaw
thepastaclaw marked this pull request as ready for review June 30, 2026 15:14
@thepastaclaw

Copy link
Copy Markdown
Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jun 30, 2026

Copy link
Copy Markdown
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@coderabbitai

coderabbitai Bot commented Jun 30, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: 8d35c6ac-204f-43d7-9692-22da30d39b9e

📥 Commits

Reviewing files that changed from the base of the PR and between 15cc815016632aa78b5e46b68e8765718591d697 and eb1857a.

📒 Files selected for processing (4)
  • .github/workflows/label-merge-conflicts.yml
  • .github/workflows/merge-check.yml
  • .github/workflows/release_docker_hub.yml
  • .github/workflows/semantic-pull-request.yml
✅ Files skipped from review due to trivial changes (1)
  • .github/workflows/release_docker_hub.yml
🚧 Files skipped from review as they are similar to previous changes (3)
  • .github/workflows/semantic-pull-request.yml
  • .github/workflows/label-merge-conflicts.yml
  • .github/workflows/merge-check.yml

Walkthrough

Four GitHub Actions workflows are updated. label-merge-conflicts.yml grants issues: write and upgrades eps1lon/actions-label-merge-conflict to v3.1.0. merge-check.yml updates permissions and rewrites the label step to use actions/github-script@v8 with the issues API. release_docker_hub.yml bumps actions/github-script from v7 to v8. semantic-pull-request.yml bumps amannn/action-semantic-pull-request from v5 to v6.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~5 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the main change: updating GitHub Actions pins for Node 24 compatibility.
Description check ✅ Passed The description matches the workflow pin updates and permission changes described in the changeset.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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.

@thepastaclaw thepastaclaw left a comment

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Code Review

PR is a small, well-scoped GitHub Actions maintenance update: bumps eps1lon/actions-label-merge-conflict, actions/github-script, and amannn/action-semantic-pull-request to Node 24-compatible majors, and replaces the deprecated actions-ecosystem/action-add-labels with an inline actions/github-script call using the official issues.addLabels REST endpoint plus the required issues: write permission. Code changes verify cleanly. The only issue is the commit body, which describes a v23.1.x release-branch backport and claims an attest-build-provenance/add-pr-comment change that does not appear in the diff — convergent finding from both commit-history agents.

_Note: GitHub does not allow me to approve my own PR; posted the same verified result as a top-level COMMENT review after inline posting failed (command failed (1): python3 scripts/review_poster.py dashpay/dash 7395 15cc815016632aa78b5e46b68e8765718591d697
STDOUT:

STDERR:
Traceback (most recent call last):
File "/Users/claw/.openclaw/workspace/scripts/review_poster.py", line 1163, in
result = post_review(
File "/Users/claw/)._

Reviewed commit: 15cc8150

🟡 1 suggestion(s)

1 additional finding(s)

suggestion: Commit body misdescribes the change (wrong target branch, claims changes not in diff)

<commit:15cc8150> (line 1)

The commit subject (ci: update GitHub Actions pins for Node 24) is accurate, but the body is misleading and will be permanent in git log/git blame after merge:

  1. It says this is a backport to this release branch, to silence GitHub's Node.js 20 deprecation warnings on the v23.1.x CI, but the PR targets develop, not v23.1.x. Future readers on develop will see a misleading provenance/target claim.
  2. It claims the change replaces deprecated attest-build-provenance with actions/attest — no such replacement exists in the diff.
  3. It claims it bumps add-pr-comment usage to the current v3 action where presentmshick/add-pr-comment@v3 is unchanged in this diff (it was already pinned to v3).

The actual changes are: bump eps1lon/actions-label-merge-conflict to v3.1.0, actions/github-script to v8, amannn/action-semantic-pull-request to v6, and replace actions-ecosystem/action-add-labels@v1 in merge-check.yml with an inline actions/github-script@v8 call (plus the matching issues: write permission grants on label-merge-conflicts.yml and merge-check.yml). Please reword the commit body to match the diff and drop the v23.1.x/release-branch framing before merge.

🤖 Prompt for all review comments with AI agents
These findings are from an automated code review. Verify each finding against the current code and only fix it if needed.

- [SUGGESTION] In `<commit:15cc8150>`:1-1: Commit body misdescribes the change (wrong target branch, claims changes not in diff)
  The commit subject (`ci: update GitHub Actions pins for Node 24`) is accurate, but the body is misleading and will be permanent in `git log`/`git blame` after merge:

1. It says this is a backport `to this release branch, to silence GitHub's Node.js 20 deprecation warnings on the v23.1.x CI`, but the PR targets `develop`, not `v23.1.x`. Future readers on develop will see a misleading provenance/target claim.
2. It claims the change `replaces deprecated attest-build-provenance with actions/attest` — no such replacement exists in the diff.
3. It claims it `bumps add-pr-comment usage to the current v3 action where present` — `mshick/add-pr-comment@v3` is unchanged in this diff (it was already pinned to v3).

The actual changes are: bump `eps1lon/actions-label-merge-conflict` to `v3.1.0`, `actions/github-script` to `v8`, `amannn/action-semantic-pull-request` to `v6`, and replace `actions-ecosystem/action-add-labels@v1` in merge-check.yml with an inline `actions/github-script@v8` call (plus the matching `issues: write` permission grants on label-merge-conflicts.yml and merge-check.yml). Please reword the commit body to match the diff and drop the v23.1.x/release-branch framing before merge.

Update workflow dependencies that still target deprecated Node.js runtimes:

- bump eps1lon/actions-label-merge-conflict to v3.1.0

- bump actions/github-script uses to v8

- bump amannn/action-semantic-pull-request to v6

- replace actions-ecosystem/action-add-labels with github-script using issues.addLabels and grant issues: write where needed
@thepastaclaw
thepastaclaw force-pushed the ci/node24-actions-dashpay branch from 15cc815 to eb1857a Compare June 30, 2026 16:06

@thepastaclaw thepastaclaw left a comment

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Code Review

Latest push only rewrites the commit metadata; the tree diff from 15cc8150..eb1857a3 is empty. The prior commit-body finding is fixed: the new message accurately lists the workflow updates in this PR and drops the old v23.1.x release-branch/backport wording plus the unrelated attest/add-pr-comment claims.

Cumulatively, this remains a focused CI maintenance change for Node 24-compatible GitHub Actions pins and replacing the deprecated add-labels action with actions/github-script using issues.addLabels and the matching issues: write permission. No in-scope findings.

Reviewed commit: eb1857a

@thephez

thephez commented Jun 30, 2026

Copy link
Copy Markdown
Collaborator

What do you think about pinning these version via hash instead of relying on the release tags?

@thepastaclaw

Copy link
Copy Markdown
Author

I like SHA pinning as a supply-chain hardening direction, especially for third-party actions, but I would not fold it into this PR.

This PR is intentionally scoped to the Node 24 compatibility bumps and follows the repo's current convention of version/tag pins. A SHA-pinning change should be a dedicated pass across the workflow set so we can decide the policy consistently: first-party actions/* vs third-party actions, how to leave readable upstream version breadcrumbs, and how updates will be maintained by Dependabot/Renovate or a manual process.

So my preference here is: merge this as the minimal deprecation fix, then do SHA pinning as a separate CI hardening PR if we want that policy for Dash Core.

@thepastaclaw

Copy link
Copy Markdown
Author

CI scope check for the red linux64_tsan-test / Test source job:

Conclusion: the PR is proper as-is; this is pre-existing feature_asset_locks.py / Platform-quorum timing flakiness, not a regression caused by the Node 24 action-pin update. I did not push, rebase, amend, create an empty commit, or rerun CI.

@UdjinM6 UdjinM6 left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

utACK eb1857a

@UdjinM6 UdjinM6 added this to the 24 milestone Jul 1, 2026

@PastaPastaPasta PastaPastaPasta left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

utACK eb1857a

@PastaPastaPasta
PastaPastaPasta merged commit 547bf5e into dashpay:develop Jul 1, 2026
46 of 48 checks passed
thepastaclaw pushed a commit to thepastaclaw/dash that referenced this pull request Jul 22, 2026
eb1857a ci: update GitHub Actions pins for Node 24 (PastaClaw)

Pull request description:

  # CI action Node 24 pins

  ## Issue being fixed or feature implemented

  GitHub Actions now warns that actions targeting Node.js 20 are deprecated and
  are being forced to run on Node.js 24. Dash Core `develop` already has most of
  the action updates, but a few workflows still pin older JavaScript action
  versions.

  ## What was done?

  Updated the remaining workflow action pins to Node 24-compatible versions:

  - `eps1lon/actions-label-merge-conflict@v3.1.0`
  - `actions/github-script@v8`
  - `amannn/action-semantic-pull-request@v6`

  Also replaced the deprecated `actions-ecosystem/action-add-labels@v1` usage in
  the merge-check workflow with `actions/github-script@v8`, and granted the
  minimal `issues: write` permission needed for PR labels/comments.

  ## How Has This Been Tested?

  - `git diff --check upstream/develop..HEAD`
  - Parsed all workflow YAML files with Ruby `YAML.load_file`
  - Searched `.github/workflows` for the deprecated action pins that triggered the
    warning
  - Ran the pre-PR code review gate; result: ship

  ## Breaking Changes

  None.

  ## Checklist

  - [x] I have performed a self-review of my own code
  - [ ] I have commented my code, particularly in hard-to-understand areas
  - [ ] I have added or updated relevant unit/integration/functional/e2e tests
  - [ ] I have made corresponding changes to the documentation
  - [ ] I have assigned this pull request to a milestone

ACKs for top commit:
  UdjinM6:
    utACK eb1857a
  PastaPastaPasta:
    utACK eb1857a

Tree-SHA512: 706fa8b74bff64c565c7bd5fdad70d5ca1398becbd320c2ea1f61e0c7b74f72f60cfd109a58ad972d56b633c476cf2866df0f2f69e4f25226c0af61bd7ec96b9
thepastaclaw pushed a commit to thepastaclaw/dash that referenced this pull request Jul 22, 2026
eb1857a ci: update GitHub Actions pins for Node 24 (PastaClaw)

Pull request description:

  # CI action Node 24 pins

  ## Issue being fixed or feature implemented

  GitHub Actions now warns that actions targeting Node.js 20 are deprecated and
  are being forced to run on Node.js 24. Dash Core `develop` already has most of
  the action updates, but a few workflows still pin older JavaScript action
  versions.

  ## What was done?

  Updated the remaining workflow action pins to Node 24-compatible versions:

  - `eps1lon/actions-label-merge-conflict@v3.1.0`
  - `actions/github-script@v8`
  - `amannn/action-semantic-pull-request@v6`

  Also replaced the deprecated `actions-ecosystem/action-add-labels@v1` usage in
  the merge-check workflow with `actions/github-script@v8`, and granted the
  minimal `issues: write` permission needed for PR labels/comments.

  ## How Has This Been Tested?

  - `git diff --check upstream/develop..HEAD`
  - Parsed all workflow YAML files with Ruby `YAML.load_file`
  - Searched `.github/workflows` for the deprecated action pins that triggered the
    warning
  - Ran the pre-PR code review gate; result: ship

  ## Breaking Changes

  None.

  ## Checklist

  - [x] I have performed a self-review of my own code
  - [ ] I have commented my code, particularly in hard-to-understand areas
  - [ ] I have added or updated relevant unit/integration/functional/e2e tests
  - [ ] I have made corresponding changes to the documentation
  - [ ] I have assigned this pull request to a milestone

ACKs for top commit:
  UdjinM6:
    utACK eb1857a
  PastaPastaPasta:
    utACK eb1857a

Tree-SHA512: 706fa8b74bff64c565c7bd5fdad70d5ca1398becbd320c2ea1f61e0c7b74f72f60cfd109a58ad972d56b633c476cf2866df0f2f69e4f25226c0af61bd7ec96b9
PastaPastaPasta added a commit to PastaPastaPasta/dash that referenced this pull request Jul 29, 2026
Backport of dashpay#7395 (upstream merge 547bf5e, cherry-picked with -m1).

v23.1.x adaptation: in release_docker_hub.yml the branch pins actions/github-script at v6 (develop was at v7); applied the same bump to v8 that the PR makes. No other pins in that file were changed - develop-only bumps from unrelated PRs were not pulled in.

(cherry picked from commit 547bf5eee2405ec53d213bad9b31c3d7b6284546)
PastaPastaPasta added a commit that referenced this pull request Jul 30, 2026
24920a0 chore: prepare v23.1.8 release (pasta)
2194248 Merge #7348: fix: penalize oversized notfound messages (pasta)
f5c72c3 Merge #7347: fix: punish invalid dstx messages (pasta)
550caf7 Merge #7465: fix(qt): handle pixel-sized fonts when scaling widgets (pasta)
e203710 Merge #7419: fix(net): bound CoinJoin message vector intake (pasta)
5f5b960 Merge #7418: fix(net): bound signing message vector intake (Pasta)
7cc2cca Merge #7450: test: make governance vote fixtures wire-valid (Pasta)
f011c80 Merge #7440: fix(net): bound governance vote signature deserialization (Pasta)
4b4d96a Merge #7442: fix(net): authorize governance inv responses via the net-layer per-peer request tracker (Pasta)
f855b13 Merge #7444: fix(net): bound bloom message vectors before allocation (Pasta)
5b5c6fb Merge #7415: fix: bound pending sig share queue (Pasta)
9bbe808 Merge #7416: fix(net): bound quorum data response vectors (Pasta)
da42f50 Merge #7424: fix: bound ChainLock seen cache (Pasta)
5b310df Merge #7438: fix: bound SPORK signature deserialization (Pasta)
e118d0c Merge #7259: fix: dangling point to cj client (Pasta)
9921621 Merge #7439: refactor: add bounded vector deserialization (Pasta)
89bdf7c Merge #7414: fix(net): throttle per-object governance vote sync requests (Pasta)
44c396d Merge #7402: fix: bound pending recovered sig queue to prevent remote OOM (Pasta)
05cfe27 Merge #7351: fix: limit signing share sessions per peer (pasta)
3ef3a5b Merge #7408: fix: bound DKG contribution blob intake (pasta)
0ea6532 Merge #7387: test: migrate governance inv cache coverage to unit tests (Pasta)
8ffdf7f Merge #7398: backport: compact block relay hardening (bitcoin#26898, bitcoin#27626, bitcoin#27743, bitcoin#26969, bitcoin#29412, bitcoin#32646, bitcoin#33296) (Pasta)
2915142 backport: bitcoin#27608 - p2p: Avoid prematurely clearing download state for other peers (PastaClaw)
90b5473 Merge #7396: fix: run of circular-dependencies with python3.15 (Pasta)
b003cdc Merge #7395: ci: update GitHub Actions pins for Node 24 (pasta)
97c3dd1 Merge #7394: fix: stabilize par help text in manpages (pasta)
8f8616b Merge #7372: backport: bitcoin#32693: depends: fix cmake compatibility error for freetype (pasta)
48f72be Merge #7360: fix: empty platformP2PPort deprecated field in protx listdiff results (pasta)
a8cccff Merge #7298: fix(qt): keep PoSe score visible when hiding banned masternodes (pasta)

Pull request description:

  Release PR for Dash Core v23.1.8, a patch release on top of v23.1.7.

  Fast-forwards from `v23.1.x` (currently at `chore: prepare v23.1.7 release`), 29 commits, no merge commits, no conflicts.

  ## Contents

  Backports of PRs already reviewed and merged on `develop`:

  `#7259` `#7347` `#7348` `#7351` `#7298` `#7360` `#7372` `#7387` `#7394` `#7395` `#7396` `#7398` `#7402` `#7408` `#7414` `#7415` `#7416` `#7418` `#7419` `#7424` `#7438` `#7439` `#7440` `#7442` `#7444` `#7450` `#7465`

  Plus `backport: bitcoin#27608`, a single commit taken from Dash #7237 because #7398's compact-block hardening depends on it. The rest of that v0.26 batch is intentionally not included on v23.1.x. The commit is byte-identical to its reviewed counterpart inside #7237.

  And release preparation: version bump, regenerated man pages, release notes, archived 23.1.7 notes.

  ## Note for reviewers: this branch was rebuilt

  An earlier revision of this PR was discarded and the branch rebuilt from scratch. Review comments on the previous revision point at commits that no longer exist, though the feedback itself was carried over (see below).

  The reason: several commits titled `Merge #NNNN` in the earlier revision contained substantial code that exists nowhere upstream — apparently written from a description of each PR rather than ported from its diff. For example, `feature_llmq_simplepose.py` is byte-identical between v23.1.7 and `develop`, yet the earlier `Merge #7408` rewrote 66 lines of it; `test/functional/p2p_governance_invs.py` does not exist on `develop` at all, yet had grown from 62 to 148 lines.

  That mislabeling matters because a commit titled `Merge #NNNN` invites less scrutiny, not more. It also had consequences: the earlier revision was **missing #7440 entirely**, and contained eleven consecutive commits that did not compile (code written against newer upstream APIs this branch does not have — `Misbehaving(Peer&)`, and `PeerIsBanned` used five commits before it was declared).

  Every commit on this branch has now been diffed against its upstream merge commit. Where a backport differs, it is because v23.1.x predates an upstream refactor and the change had to be applied to the pre-refactor file — for example #7418 and #7438 patch `signing_shares.cpp` / `spork.cpp` where upstream patches `net_signing.cpp` / `net_processing.cpp`.

  ## Dropped from this branch

  - **#7350** (`net: don't lock cs_main while reading blocks`) — dropped on review feedback. It is a 110-line lock-structure refactor of `ProcessGetBlockData` with no measured benefit, and it would add avoidable churn to the eventual master→develop merge-back. Nothing on this branch depends on it: #7398's compact-block work precedes it, and the remaining 14 commits replay with zero conflicts once it is removed. Thanks @knst.

  ## Added after the initial review pass

  - **#7351** (`fix: limit signing share sessions per peer`) — cherry-picked as a single
    commit and placed before #7402, matching upstream's merge order. The include block
    additionally carries `<ranges>`: upstream's diff adds only `<algorithm>` because develop
    already had it, whereas v23.1.x did not and the backported `GetSessionCount()` /
    `GetAnnouncementSessionCount()` use `std::ranges::count_if`.
  - **#7465** (`fix(qt): handle pixel-sized fonts when scaling widgets`) — cherry-picked from
    the five upstream commits. `optiontests.cpp` additionally includes `qt/guiutil_font.h`,
    because `fontsLoaded()` and `updateFonts()` are declared there on v23.1.x while develop
    declares them in `qt/guiutil.h`, which is all the upstream test includes.

  Two further backports were added later and applied without any adaptation --
  their diffs are byte-for-byte identical to upstream:

  - **#7347** (`fix: punish invalid dstx messages`)
  - **#7348** (`fix: penalize oversized notfound messages`)

  ## Adaptations worth flagging

  - **#7360** — upstream gates `platformP2PPort` / `platformHTTPPort` in `protx listdiff` behind `IsServiceDeprecatedRPCEnabled()`. On 23.x those deprecated fields are deliberately not enforced through gating (see `bbcd9d543e6`), so shipping the gate as-is would silently drop two fields that v23.1.7 always returned. Changed to `if (true)` with a comment, per review feedback, keeping the block aligned with `develop`. The substantive fix from #7360 — reading the live port from `netInfo` instead of the always-zero scalar — is retained.

  - **#7415** — the pending-map caps (`MAX_PENDING_SIG_SHARES_PER_NODE`, `MAX_PENDING_SIG_SHARES_TOTAL`) are backported. The additional bound upstream places on batches awaiting verification is not, because it guards a condition that does not exist here: upstream's dispatcher pushes one task per batch inside an inner loop, whereas v23.1.x pushes a single looping worker per 10 ms tick. There is no unbounded task queue to bound.

  - **Man pages** — regenerated without the `lock` debug category, which only exists under `DEBUG_LOCKCONTENTION` and so is absent from release binaries. Thanks @UdjinM6 for catching this.

  ## Known CI failure

  macOS jobs are expected to fail. `actions/upload-artifact@v6` rejects filenames containing `:`, and the Xcode SDK ships Perl man pages with `::` in the name. A release-branch-only workaround existed on the earlier revision but was dropped as it corresponds to no upstream PR. This is accepted for this release.

  ## Testing

  - Every commit through #7465 compiles individually (verified for 27 of the 29; the three additions below were verified at the tip) — verified individually, not just at the tip.
  - Full build clean; no new warnings.
  - Unit tests pass.
  - Functional tests pass: `feature_llmq_signing` (both variants), `feature_llmq_chainlocks`, `feature_llmq_dkgerrors`, `feature_llmq_is_cl_conflicts`, `p2p_instantsend`, `feature_dip3_deterministicmns` (both wallet types), `rpc_coinjoin`.
  - Qt unit tests pass (32 cases, run under the `cocoa` platform plugin so the pixel-sized
    font regression from #7465 actually executes rather than self-skipping).
  - Lint: one pre-existing `lint-cppcheck-dash` failure, identical on v23.1.7, in files this branch does not touch.

Top commit has no ACKs.

Tree-SHA512: 0fa469c9a33820aa85fbb8b90c5877409d09490f746f1300b05ceda470a600765f900bec42e5aad5d90a2d46b44e28c20e44dc4a8fe719553a072298069eaec4
@UdjinM6 UdjinM6 modified the milestones: 24, 23.1.8 Jul 30, 2026
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.

5 participants