From 2eaa836f994be7547de524a4678e3d85f1a5f161 Mon Sep 17 00:00:00 2001 From: Austin Valle Date: Mon, 13 Jan 2025 10:46:00 -0500 Subject: [PATCH] Update dependabot config to include tools directory (#265) * Update dependabot config to include `tools` directory * Update dependabot.yml * Update dependabot.yml --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 73bb4d3..0df7d80 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,8 +2,14 @@ # https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates version: 2 updates: + # Maintain dependencies for Go modules - package-ecosystem: "gomod" directory: "/" + schedule: + # Check for updates to Go modules every weekday + interval: "daily" + - package-ecosystem: "gomod" + directory: "/tools" schedule: interval: "daily" - package-ecosystem: "github-actions"