From f8a9d90798719e53b037fb45c4e50f7c2ed16025 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Tue, 1 Sep 2026 11:05:55 -0400 Subject: [PATCH] Update Dependabot to scan the setup action directory The github-actions ecosystem only scans .github/workflows and a root action.yml for a given directory, so composite actions in subdirectories were never checked for updates. Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com> --- .github/dependabot.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 72a1ca7..2af8ece 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,9 @@ version: 2 updates: - package-ecosystem: "github-actions" - directory: "/" + directories: + - "/" + - "/setup" schedule: interval: "monthly" labels: []