From 3d8e8964038046feff8dbef5d6080e72c0ea5bc5 Mon Sep 17 00:00:00 2001 From: James Loh Date: Thu, 10 Jul 2025 16:20:18 +1000 Subject: [PATCH] Restrict MySQL version to 8.0.x no ref - We officially only support MySQL v8, not 8.4 or 9, so can't go above this --- .github/renovate.json5 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 1dd21c6..c554824 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -28,5 +28,11 @@ ], pinDigests: false, }, + { + description: "Restrict MySQL to patch updates only within 8.0", + matchDatasources: ["docker", "docker-compose"], + matchPackageNames: ["mysql"], + allowedVersions: "~8.0", + }, ], }