From 5f46ee8af67f294f13a00176cb7b2178f2bdb45f Mon Sep 17 00:00:00 2001 From: Joe Harrison <53116754+sudo-kraken@users.noreply.github.com> Date: Tue, 7 Oct 2025 22:27:45 +0100 Subject: [PATCH] chore: update renovate bot logic to remove pin from compose files and charts (#1999) --- .github/renovate/docker.json5 | 9 ++++++++- .github/renovate/helm.json5 | 3 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/renovate/docker.json5 b/.github/renovate/docker.json5 index 9817e86a1..7c97fefc4 100644 --- a/.github/renovate/docker.json5 +++ b/.github/renovate/docker.json5 @@ -5,4 +5,11 @@ 'docker:enableMajor', 'docker:pinDigests' ], -} \ No newline at end of file + + packageRules: [ + { + matchManagers: ['docker-compose'], + pinDigests: false, + }, + ], +} diff --git a/.github/renovate/helm.json5 b/.github/renovate/helm.json5 index e2f6e53a5..0b479c3a6 100644 --- a/.github/renovate/helm.json5 +++ b/.github/renovate/helm.json5 @@ -5,7 +5,8 @@ { matchManagers: ['helm-values'], matchFileNames: ['charts/*/values.yaml'], - minimumReleaseAge: '0' + minimumReleaseAge: '0', + pinDigests: false, }, ],