From: Jérôme Benoit Date: Mon, 17 Nov 2025 10:44:19 +0000 (+0100) Subject: chore: switch to renovate X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=3f973d7e92fa5540873b876bdd60aa95981607ce;p=benchmarks-js.git chore: switch to renovate Signed-off-by: Jérôme Benoit --- diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index b6f8049..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,30 +0,0 @@ -# Docs: https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates -version: 2 -updates: - - package-ecosystem: 'github-actions' - directory: '/' - schedule: - interval: 'daily' - labels: - - 'github-actions' - - package-ecosystem: 'npm' - directory: '/' - schedule: - interval: 'daily' - groups: - regular: - update-types: - - 'patch' - - 'minor' - eslint: - update-types: - - 'major' - patterns: - - 'eslint' - - '@eslint/*' - commitlint: - patterns: - - '@commitlint/*' - labels: - - 'dependencies' - versioning-strategy: increase diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..b65e9af --- /dev/null +++ b/renovate.json @@ -0,0 +1,18 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended", "group:allNonMajor", "schedule:daily"], + "lockFileMaintenance": { + "enabled": true + }, + "packageRules": [ + { + "matchFileNames": ["**/package.json"], + "matchDepTypes": [ + "dependencies", + "devDependencies", + "optionalDependencies" + ], + "rangeStrategy": "bump" + } + ] +}