From 22d0ec44ab0ff7ab37a926e122b7d4568ecf89d5 Mon Sep 17 00:00:00 2001 From: Ganeshkumar Ashokavardhanan Date: Tue, 23 Jun 2026 13:59:56 -0700 Subject: [PATCH] ci: add Dependabot to keep dependencies up to date Adds .github/dependabot.yml enabling weekly Dependabot updates for Go modules (/ and /ci/e2e), GitHub Actions, and Docker base images (/ and /ci/build_image), so dependency and security updates are tracked automatically. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Signed-off-by: Copilot <223556219+Copilot@users.noreply.github.com> Signed-off-by: Ganeshkumar Ashokavardhanan --- .github/dependabot.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..fb6c033d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,29 @@ +# Keep dependencies up to date automatically. +# https://docs.github.com/code-security/dependabot/dependabot-version-updates +version: 2 +updates: + # Go modules + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "gomod" + directory: "/ci/e2e" + schedule: + interval: "weekly" + + # GitHub Actions used by CI/release workflows + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + + # Docker base images used for builds + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "docker" + directory: "/ci/build_image" + schedule: + interval: "weekly"