From cfb15d6f611bd631f2c0f66bd8e75cdd32321a14 Mon Sep 17 00:00:00 2001 From: Nick Boldt Date: Thu, 22 Feb 2024 12:13:42 -0400 Subject: [PATCH] chore: enable digest pinning and major updates in dockerfiles; attempt to split go and docker into separate updates (different branch prefixes) (#225) Signed-off-by: Nick Boldt --- .github/renovate.json | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 3f946ed4..c03c1dba 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,13 +1,28 @@ { "extends": [ - "config:js-app", + "config:best-practices", ":gitSignOff", ":rebaseStalePrs", + "docker:pinDigests", + "docker:enableMajor", "group:allNonMajor", "group:linters", "group:test" ], "constraints": { "go": "1.20" - } + }, + "docker": { + "branchPrefix": "docker-", + "digest": { + "enabled": true + } + }, + "go": { + "branchPrefix": "go-" + }, + "packageRules": [ + { "matchDatasources": ["docker"] }, + { "matchDatasources": ["go"] } + ] }