From f032945e7ab05db78ab22aecf90de329154d358a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 14:45:07 +0000 Subject: [PATCH 1/3] Initial plan From 735aa6e1edae75ea238d9f95ee1079c809f19be9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 14:45:55 +0000 Subject: [PATCH 2/3] Update action.yml to use node24 instead of node20 Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index acabf73..3c149dc 100644 --- a/action.yml +++ b/action.yml @@ -18,5 +18,5 @@ inputs: required: false description: 'The output SARIF file path, defaults to the input SARIF file path' runs: - using: 'node20' + using: 'node24' main: 'dist/index.js' From 42533ca138fd5d282375c3ecaa8d63839f059b1d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 16:11:15 +0000 Subject: [PATCH 3/3] Update check-dist.yml to use Node.js 24.x instead of 20.x Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> --- .github/workflows/check-dist.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index b574fda..66572ae 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -23,10 +23,10 @@ jobs: steps: - uses: actions/checkout@v6 - - name: Set Node.js 20.x + - name: Set Node.js 24.x uses: actions/setup-node@v6.2.0 with: - node-version: 20.x + node-version: 24.x - name: Install dependencies run: npm ci