From 906f1541461067d4c75f6a8a7431a538c296d6be Mon Sep 17 00:00:00 2001 From: David Zhao Date: Thu, 6 Feb 2025 15:20:56 -0800 Subject: [PATCH] fix version to Go 1.22, reduce renovate frequency (#966) --- renovate.json | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/renovate.json b/renovate.json index 41fd321..6bf1668 100644 --- a/renovate.json +++ b/renovate.json @@ -1,8 +1,9 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ], + "extends": ["config:base"], + "constraints": { + "go": "1.22" + }, "commitBody": "Generated by renovateBot", "packageRules": [ { @@ -12,9 +13,12 @@ { "matchManagers": ["gomod"], "groupName": "go deps" + }, + { + "matchManagers": ["npm"], + "groupName": "npm deps" } ], - "postUpdateOptions": [ - "gomodTidy" - ] + "postUpdateOptions": ["gomodTidy"], + "schedule": ["on monday"] }