From 672cb67afb5a321ac14ab87c5f1b45c758020d13 Mon Sep 17 00:00:00 2001 From: SurefireStudios <123013554+SurefireStudios@users.noreply.github.com> Date: Tue, 15 Sep 2026 08:24:12 -0700 Subject: [PATCH] Fix unterminated string in Dependabot update-types example The final sequence item in the combined `update-types`/`dependency-type` example was missing its closing double quote, so the block does not parse as YAML. The same string appears correctly quoted four other times in this file. The block is tagged `yaml copy`, so the copy button offers a dependabot.yml that Dependabot would reject. --- .../controlling-dependencies-updated.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/code-security/how-tos/secure-your-supply-chain/manage-your-dependency-security/controlling-dependencies-updated.md b/content/code-security/how-tos/secure-your-supply-chain/manage-your-dependency-security/controlling-dependencies-updated.md index 72317005dcb0..a346a21d13fb 100644 --- a/content/code-security/how-tos/secure-your-supply-chain/manage-your-dependency-security/controlling-dependencies-updated.md +++ b/content/code-security/how-tos/secure-your-supply-chain/manage-your-dependency-security/controlling-dependencies-updated.md @@ -212,7 +212,7 @@ Here are some examples showing how `update-types` can be used with `allow`. - dependency-type: "development" update-types: - "version-update:semver-minor" - - "version-update:semver-patch + - "version-update:semver-patch" ``` In this example, production dependencies will only receive patch updates, while development dependencies will receive both minor and patch updates.