From 1997941965d295fd137e0ba80004c84a1fc6046f Mon Sep 17 00:00:00 2001 From: Weston Blieden Date: Mon, 21 Sep 2026 10:26:31 +0200 Subject: [PATCH] ci: match the SDK approval rule regardless of registry prefix matchPackageNames listed only axisecp/acap-native-sdk, but repos with ARG REPO=docker.io/axisecp resolve the dep as docker.io/axisecp/acap-native-sdk, which never matched. The approval gate was silently bypassed in Axis_Cam_OpenVPN and Axis_Cam_WireGuard, where SDK 12.11.0 was queued for automatic PR creation. --- renovate.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 88dadc9..804852a 100644 --- a/renovate.json +++ b/renovate.json @@ -9,7 +9,12 @@ { "description": "An SDK bump raises the package's minimum AXIS OS, so decide it deliberately.", "matchDatasources": ["docker"], - "matchPackageNames": ["axisecp/acap-native-sdk", "axisecp/acap-sdk"], + "matchPackageNames": [ + "axisecp/acap-native-sdk", + "axisecp/acap-sdk", + "docker.io/axisecp/acap-native-sdk", + "docker.io/axisecp/acap-sdk" + ], "dependencyDashboardApproval": true }, {