From 908d39cbd44d8fe68a2c70d27b015447fc70804e Mon Sep 17 00:00:00 2001 From: Ned Twigg Date: Mon, 29 Jun 2026 13:32:48 -0700 Subject: [PATCH] chore(renovate): stop updating max-sixty/tend and workflow node version Two github-actions deps shouldn't be Renovate-managed: - max-sixty/tend: the tend bot opens its own version-update PRs, so Renovate bumping it (e.g. 0.1.8 -> v1) just causes churn/conflicts. - node: the Node version is governed by devEngines.runtime in package.json; Renovate bumping node-version in workflows (22 -> 24) decouples CI from that single source of truth. Disable both via packageRules so the github-actions group PR stops including them. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/renovate.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index a8754711..d7067a96 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -55,6 +55,18 @@ "matchManagers": ["npm"], "matchPackageNames": ["@types/vscode"], "allowedVersions": "1.85.0" + }, + { + "description": "tend manages its own action version (the tend bot opens its own update PRs); don't let Renovate bump max-sixty/tend", + "matchManagers": ["github-actions"], + "matchPackageNames": ["max-sixty/tend"], + "enabled": false + }, + { + "description": "Node version is governed by devEngines in package.json; don't let Renovate bump node in GitHub Actions workflows", + "matchManagers": ["github-actions"], + "matchPackageNames": ["node"], + "enabled": false } ] }