From 732bc88ee3898e1ece84cb5608235e79e5002935 Mon Sep 17 00:00:00 2001 From: John Strunk Date: Fri, 3 May 2024 10:37:28 -0400 Subject: [PATCH] Re-enable digest pinning for devcontainer renovate has been updated to distinguish between the base image and the "feature" images, so we can now enable pinning for the base image, but keep it disabled for the features since they don't support it. Signed-off-by: John Strunk --- .github/renovate.json5 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 07cdcd3..e06ae02 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -26,8 +26,9 @@ "schedule": ["before 9am on monday"] }, { - "description": "Don't pin digests in devcontainer.json because it's not supported in features", + "description": "Devcontainer 'features' don't support digest pinning", "matchManagers": ["devcontainer"], + "matchDepTypes": ["feature"], "pinDigests": false } ],