From 34dfa9bf9df465c935a2a895864756098434b85c Mon Sep 17 00:00:00 2001 From: Horst Gutmann Date: Tue, 9 Sep 2025 16:39:11 +0200 Subject: [PATCH] chore: disable otel updates within the dagger module These should be only updated together with Dagger. --- .github/renovate-config.json5 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/renovate-config.json5 b/.github/renovate-config.json5 index 501b6a814..f32b133ba 100644 --- a/.github/renovate-config.json5 +++ b/.github/renovate-config.json5 @@ -85,6 +85,11 @@ schedule: "* 0-4 * * 1", matchPackageNames: ["ghcr.io/renovatebot/renovate"], }, + { + // Do not update otel dependencies in the dagger module. These should only be updated together with Dagger + matchFileNames: ["dagger/go.mod", "dagger/go.sum"], + matchPackageNames: ["go.opentelemetry.io/**"], + }, ], platformCommit: "enabled", rebaseWhen: "behind-base-branch",