From 45f9b78377b81e95a4a53af8fc1ffc3c5c6cf96c Mon Sep 17 00:00:00 2001 From: Matt Raible Date: Mon, 19 Jan 2026 21:32:49 -0700 Subject: [PATCH] Ignore unapproved GitHub Actions versions - actions/setup-node >= 6.2.0 - actions/setup-python >= 6.1.0 These versions are not yet on the enterprise approved actions allowlist. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 311763e..87fd80e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -20,3 +20,8 @@ updates: day: "monday" time: "14:00" timezone: "UTC" + ignore: + - dependency-name: "actions/setup-node" + versions: [">=6.2.0"] + - dependency-name: "actions/setup-python" + versions: [">=6.1.0"]