From d4df2f554af77a0dfe22c3b5256dcda96c609514 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sat, 5 Sep 2026 08:21:15 -0400 Subject: [PATCH] Add support for GitHub Actions in Dependabot config https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference#directories-or-directory-- --- .github/dependabot.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1230149..849f636 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,8 @@ version: 2 updates: - package-ecosystem: "github-actions" - directory: "/" + directories: + - "/" + - "/.github/actions/*/" schedule: interval: "daily"