From 8d0d76d04e2bb7ed3974c44bd2f84def410437a0 Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 30 Oct 2023 11:23:50 -0400 Subject: [PATCH] Configure dependabot to ignore @types/node. We want @types/node to match the *lowest* version of node.js that we support. --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 212d8914..e45a89ef 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,3 +19,9 @@ updates: update-types: - "minor" - "patch" + ignore: + # We want @types/node to match the *lowest* version of node.js that we support + - dependency-name: "@types/node" + update-types: + - "version-update:semver-major" + - "version-update:semver-minor"