From 32d8946f290c47ab9e80fbe5aacb8e4427f2103c Mon Sep 17 00:00:00 2001 From: nodeselector Date: Wed, 8 Jul 2026 08:58:57 -0500 Subject: [PATCH] Add Dependabot configuration Prep for the public open-source release (github/open-source-releases#710). Enable weekly Dependabot updates for the two ecosystems in this repo: - gomod, rooted at /go where the module lives. - github-actions, rooted at / for the workflow files. Keeps the Go dependencies and the (now SHA-pinned) workflow actions current once the repo is public. --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..8a6e843 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + # Go module (lives under go/) + - package-ecosystem: gomod + directory: /go + schedule: + interval: weekly + commit-message: + prefix: gomod + + # GitHub Actions workflows (.github/workflows) + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + commit-message: + prefix: actions