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..07774dd 100644 --- a/action.yml +++ b/action.yml @@ -26,5 +26,5 @@ inputs: default: 'pre-commit fixes' runs: - using: 'node20' + using: 'node24' main: 'dist/index.js'