From 2b4b1d407201895481a117ea81489d50aaebd329 Mon Sep 17 00:00:00 2001 From: Lindsey Wild <35239154+lindseywild@users.noreply.github.com> Date: Mon, 6 Apr 2026 09:57:40 -0400 Subject: [PATCH] Temp block ESLint major version bumps `eslint-plugin-github` doesn't support v10 yet, so we are blocking major bumps until then. https://github.com/github/axe-github/pull/304#issuecomment-4143233911 --- .github/dependabot.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0c2ecc8..092ffb2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,10 @@ updates: directory: "/" schedule: interval: weekly + # TODO: Allow `eslint` to update to version 10 after `eslint-plugin-github` updates with support for v10 too + ignore: + - dependency-name: "eslint" + update-types: ["version-update:semver-major"] groups: all-dependencies: patterns: @@ -23,4 +27,4 @@ updates: - "*" update-types: - "minor" - - "patch" \ No newline at end of file + - "patch"