From d8d0c4f1d10e4fe4d57fbce2ee34ba8629138aee Mon Sep 17 00:00:00 2001 From: Lucas Alvares Gomes Date: Wed, 5 Nov 2025 13:55:10 +0000 Subject: [PATCH] Add Dependabot config for Go module updates Add .github/dependabot.yml to enable automatic dependency updates for Go modules. Dependabot will check the go.mod file weekly and open PRs for new versions or security fixes. Signed-off-by: Lucas Alvares Gomes --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..66bb242d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" +