From 0e674e8b71f86fa38c9d0cc0068f7637f932ddf2 Mon Sep 17 00:00:00 2001 From: "Nelson, Erik" Date: Sat, 23 May 2026 01:57:46 +0000 Subject: [PATCH] ci: force minimax to run on node24 via env override tarmojussila/minimax-code-review v0.4.0 still declares node20 in its action.yml, so even after the action-version bumps the workflow continues to emit the "Node.js 20 actions are deprecated" warning. GitHub provides FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true as a per-workflow opt-in to run a node20-declared action on node24 ahead of the forced default switch on 2026-06-02. Setting it job-scoped so only the minimax job is affected. Trial bump: revert if the action breaks on node24 (low risk, but unverified). Once upstream ships a node24 release we can drop the env override. --- .github/workflows/minimax_code_review.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/minimax_code_review.yml b/.github/workflows/minimax_code_review.yml index d3ed429..66608af 100644 --- a/.github/workflows/minimax_code_review.yml +++ b/.github/workflows/minimax_code_review.yml @@ -11,6 +11,8 @@ jobs: review: name: MiniMax Code Review runs-on: ubuntu-latest + env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" steps: - name: Code Review uses: tarmojussila/minimax-code-review@v0.4.0