From d46b5292502c672dbb0a84134775c40e0934b53b Mon Sep 17 00:00:00 2001 From: devfrankduah Date: Tue, 9 Jun 2026 12:40:01 -0500 Subject: [PATCH 1/8] update Node.js setup action to version 6 for improved performance and compatibility --- .github/workflows/agent-review-pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/agent-review-pr.yml b/.github/workflows/agent-review-pr.yml index d346923..b5e98b5 100644 --- a/.github/workflows/agent-review-pr.yml +++ b/.github/workflows/agent-review-pr.yml @@ -46,7 +46,7 @@ jobs: GH_TOKEN: ${{ github.token }} - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: "npm" @@ -77,7 +77,7 @@ jobs: fetch-depth: 0 token: ${{ steps.review-bot-token.outputs.token }} - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 20 cache: npm From 387f09f0e7e699b385de0d7358dd005a06bea674 Mon Sep 17 00:00:00 2001 From: devfrankduah Date: Tue, 9 Jun 2026 12:40:09 -0500 Subject: [PATCH 2/8] update Node.js setup action to version 6 for improved performance and compatibility --- .github/workflows/bot-respond.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bot-respond.yml b/.github/workflows/bot-respond.yml index 9cfbd1f..9afc2ee 100644 --- a/.github/workflows/bot-respond.yml +++ b/.github/workflows/bot-respond.yml @@ -41,7 +41,7 @@ jobs: fetch-depth: 0 token: ${{ steps.bot-token.outputs.token }} - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 20 cache: npm From 585cff26ffefcba3445c343b238fad0ff5321dab Mon Sep 17 00:00:00 2001 From: devfrankduah Date: Tue, 9 Jun 2026 12:40:16 -0500 Subject: [PATCH 3/8] update Node.js setup action to version 6 for improved performance and compatibility --- .github/workflows/publish-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 60226dc..393adfe 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -57,7 +57,7 @@ jobs: run: git checkout --detach "${{ steps.meta.outputs.tag }}" - name: Use Node.js 20.x - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 20.x cache: "npm" From 07e83d3b0ce06b8789c799ff4895fa5d67c4b2c9 Mon Sep 17 00:00:00 2001 From: devfrankduah Date: Tue, 9 Jun 2026 12:43:22 -0500 Subject: [PATCH 4/8] update Node.js setup action to version 6 for improved performance and compatibility --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2dec65f..b2ca835 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: "npm" @@ -47,7 +47,7 @@ jobs: # bundle and fails if the committed output drifts from source, so a release can # never ship a stale bundle. - name: Use Node.js 20.x - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 20.x cache: "npm" From f0cd841df5d810b1bb8f1f46de819f56803a189d Mon Sep 17 00:00:00 2001 From: devfrankduah Date: Tue, 9 Jun 2026 13:02:47 -0500 Subject: [PATCH 5/8] update Node.js version in agent-review-pr workflow to 24.x for enhanced compatibility --- .github/workflows/agent-review-pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/agent-review-pr.yml b/.github/workflows/agent-review-pr.yml index b5e98b5..5d2d1e8 100644 --- a/.github/workflows/agent-review-pr.yml +++ b/.github/workflows/agent-review-pr.yml @@ -34,7 +34,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [20.x, 22.x] + node-version: [20.x, 22.x, 24.x] steps: - uses: actions/checkout@v4 @@ -79,7 +79,7 @@ jobs: - uses: actions/setup-node@v6 with: - node-version: 20 + node-version: 24 cache: npm - name: Install dependencies From f6c01c2c98b94bc276ee9ecca94b98b144b5a775 Mon Sep 17 00:00:00 2001 From: devfrankduah Date: Tue, 9 Jun 2026 13:02:54 -0500 Subject: [PATCH 6/8] update Node.js version in bot-respond workflow to 24 for enhanced compatibility --- .github/workflows/bot-respond.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bot-respond.yml b/.github/workflows/bot-respond.yml index 9afc2ee..c96e40f 100644 --- a/.github/workflows/bot-respond.yml +++ b/.github/workflows/bot-respond.yml @@ -43,7 +43,7 @@ jobs: - uses: actions/setup-node@v6 with: - node-version: 20 + node-version: 24 cache: npm - name: Install dependencies From a2c6fbd6f7819d39410c5d7c012586b0733ae9e6 Mon Sep 17 00:00:00 2001 From: devfrankduah Date: Tue, 9 Jun 2026 13:02:59 -0500 Subject: [PATCH 7/8] update Node.js version in publish-release workflow to 24.x for enhanced compatibility --- .github/workflows/publish-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 393adfe..17157d6 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -56,10 +56,10 @@ jobs: - name: Checkout released tag run: git checkout --detach "${{ steps.meta.outputs.tag }}" - - name: Use Node.js 20.x + - name: Use Node.js 24.x uses: actions/setup-node@v6 with: - node-version: 20.x + node-version: 24.x cache: "npm" - name: Install dependencies From aec5b67ace4188c6ccf52bc8f82fff622621ce29 Mon Sep 17 00:00:00 2001 From: devfrankduah Date: Tue, 9 Jun 2026 13:03:08 -0500 Subject: [PATCH 8/8] update Node.js version in tests workflow to include 24.x for enhanced compatibility --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b2ca835..e52313f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [20.x, 22.x] + node-version: [20.x, 22.x, 24.x] steps: - uses: actions/checkout@v4 @@ -46,10 +46,10 @@ jobs: # The Action runs the committed dist/index.js, not src/. This job rebuilds the # bundle and fails if the committed output drifts from source, so a release can # never ship a stale bundle. - - name: Use Node.js 20.x + - name: Use Node.js 24.x uses: actions/setup-node@v6 with: - node-version: 20.x + node-version: 24.x cache: "npm" - name: Install dependencies