From 0613847fc024e552bf587214bac765b0ac669ad3 Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Mon, 27 Apr 2026 11:20:59 +0300 Subject: [PATCH 1/4] Update cspell to `v10.0.0` --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6dd0afc7221..fbf5f1b4618 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -50,7 +50,7 @@ repos: priority: 1 # so rustfmt runs first - repo: https://github.com/streetsidesoftware/cspell-cli - rev: v9.7.0 + rev: v10.0.0 hooks: - id: cspell types: [rust] From 7d631678aeb127c66494584cfeb5ad99ff6c613e Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Mon, 27 Apr 2026 11:21:33 +0300 Subject: [PATCH 2/4] Force node version to be 24 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b70b4142936..0a0b3079dc4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,7 +33,7 @@ env: CARGO_PROFILE_DEV_DEBUG: 0 CARGO_PROFILE_RELEASE_DEBUG: 0 CARGO_TERM_COLOR: always - FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' # TODO: Remove on 2026/06/02 + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true # TODO: Remove on 2026/06/02 jobs: rust_tests: From fb00aa6ebec749e4e61bac97f53624aab6282378 Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Mon, 27 Apr 2026 11:38:05 +0300 Subject: [PATCH 3/4] Ensure node24 --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0a0b3079dc4..7105fc2ac1b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -411,6 +411,11 @@ jobs: key: prek-${{ hashFiles('.pre-commit-config.yaml') }} path: ~/.cache/prek + # TODO: Remove on 2026/06/02 when node24 is the default + - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 + with: + node-version: "24" + - name: prek id: prek uses: j178/prek-action@cbc2f23eb5539cf20d82d1aabd0d0ecbcc56f4e3 # v2.0.2 From 64cc72d509b52e46d490e4051f697c9860f96c62 Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Mon, 27 Apr 2026 13:05:42 +0300 Subject: [PATCH 4/4] Disable cache --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7105fc2ac1b..ac1060859ad 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -414,6 +414,7 @@ jobs: # TODO: Remove on 2026/06/02 when node24 is the default - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 with: + package-manager-cache: false node-version: "24" - name: prek