From c236c557384ca2a2aa252cac96ba5a62a6da0797 Mon Sep 17 00:00:00 2001 From: Damien Retzinger Date: Tue, 9 Jun 2026 17:52:19 -0400 Subject: [PATCH] build(deps): ignore @types/node in dependabot --- .github/dependabot.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 456ebed..18cf615 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,4 +15,8 @@ updates: exclude-paths: - "resolve-check-config/**" - "setup-install/**" - - "supported-version/**" \ No newline at end of file + - "supported-version/**" + # @types/node tracks the Node runtime version, not the latest release; + # bumping it ahead of the pinned Node version is noise. + ignore: + - dependency-name: "@types/node" \ No newline at end of file