From d1d690eb9f6fe21e55a22210af2910e26e682fe2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Mar 2026 17:12:34 +0000 Subject: [PATCH 1/3] Initial plan From 0689f5893a50e75d5449b80a0915807e1ca9afd6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Mar 2026 17:14:38 +0000 Subject: [PATCH 2/3] feat: upgrade node20 to node22 and configure renovate to keep it updated Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> --- .github/renovate.json | 10 ++++++++++ action.yml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 5db72dd..fbcf3d0 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -2,5 +2,15 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended" + ], + "customManagers": [ + { + "customType": "regex", + "fileMatch": ["^action\\.yml$"], + "matchStrings": ["using: 'node(?\\d+)'"], + "depNameTemplate": "node", + "datasourceTemplate": "node-version", + "versioningTemplate": "node" + } ] } diff --git a/action.yml b/action.yml index fed5c42..85da03d 100644 --- a/action.yml +++ b/action.yml @@ -26,5 +26,5 @@ inputs: default: 'pre-commit fixes' runs: - using: 'node20' + using: 'node22' main: 'dist/index.js' From 955a7034a3569955248fb759440b97b519836bea Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Mar 2026 17:21:51 +0000 Subject: [PATCH 3/3] feat: upgrade node runtime to node24 Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 85da03d..07774dd 100644 --- a/action.yml +++ b/action.yml @@ -26,5 +26,5 @@ inputs: default: 'pre-commit fixes' runs: - using: 'node22' + using: 'node24' main: 'dist/index.js'