From 94bbe43d56b8b71e7bd421ec80815c2e9288030b Mon Sep 17 00:00:00 2001 From: Yan Yi Goh Date: Thu, 11 Jun 2026 16:58:39 +0800 Subject: [PATCH] github: add initial dependabot config This repo is a multi-module Go worktree with shared CI workflows, so Dependabot needs explicit coverage for each module root and GitHub Actions. Adding the first config enables routine dependency updates without relying on ad hoc manual maintenance. Co-authored-by: Codex --- .github/dependabot.yml | 51 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..341a2bf --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,51 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directories: + - "/audit" + - "/collection" + - "/common" + - "/currency" + - "/database/clauses" + - "/database/postgres" + - "/datetime" + - "/encoding" + - "/encryption" + - "/env" + - "/errors" + - "/host" + - "/http" + - "/http/auth" + - "/http/binding" + - "/http/header" + - "/http/jwt" + - "/http/middleware" + - "/http/wegin" + - "/integration-test" + - "/iso" + - "/iso/country" + - "/iso/site" + - "/linters/isolint" + - "/linters/stringlint" + - "/localization" + - "/logger" + - "/mocktest" + - "/pointer" + - "/rand" + - "/retry" + - "/secretsmanager" + - "/snowflake" + - "/strings" + - "/to" + schedule: + interval: "weekly" + groups: + go-dependencies: + patterns: + - "*" + group-by: "dependency-name" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"