From e2e2806d003bd80f12caf2b726610e802ef5a35b Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Fri, 19 Jun 2026 09:29:29 +0200 Subject: [PATCH] CI: Make dependabot scan our custom actions as well By default, dependabot only looks at `.github/workflows`. --- .github/dependabot.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2507637930..034d1a0b11 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,9 @@ version: 2 updates: - package-ecosystem: "github-actions" - directory: "/" + directories: + - "/" + - "/.github/actions/*" schedule: # Check for updates to GitHub Actions every week interval: "weekly"