From 3dc44d3a5178b40b0a9c560816e488334bb733c3 Mon Sep 17 00:00:00 2001 From: Charis <26616127+charislam@users.noreply.github.com> Date: Tue, 21 Oct 2025 15:39:25 -0400 Subject: [PATCH] ci(dependabot): don't get prompted for major version updates for github actions (#39733) Major version updates require more preparation and testing, so we only want to update these on our schedule / if actually deprecated, not be prompted as soon as a new major version comes out. We mostly want to keep patch/minor updates so we can be aware of any vulnerability fixes. --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b18fd29357..3e9248e06d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,7 @@ updates: directory: '/' schedule: interval: 'weekly' + ignore: + - dependency-name: '*' + update-types: + - 'version-update:semver-major'