From 64a571f2c63a415c171713abcf80f5da7f11ccfb Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 25 Jun 2026 06:45:11 +0200 Subject: [PATCH] Change Dependabot directory for GitHub Actions Dependabot is currently improperly configured so all GitHub Actions dependencies in `.github/workflows/code_checks.yml` are out of date. > For GitHub Actions, use the value `/`. Dependabot will search the `/.github/workflows` directory, as well as the `action.yml/action.yaml` file from the root directory. https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference#package-ecosystem --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2f6f35d..44059f5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,7 +7,7 @@ updates: interval: "monthly" - package-ecosystem: "github-actions" - directory: "/.github/workflows/" + directory: "/" schedule: interval: "daily" ...