From 342e269c579581f754da52ab56aec2bd4c86f057 Mon Sep 17 00:00:00 2001 From: "m@yim.jp" Date: Sun, 11 Jan 2026 10:09:18 +0000 Subject: [PATCH 1/4] Add dependabot config for gomod and github-actions --- .github/dependabot.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..fa06c365 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,21 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "deps" + labels: + - "dependencies" + open-pull-requests-limit: 5 + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "ci" + labels: + - "dependencies" + - "ci" From e78658927340e4f69474a53dd3a229f8eb70dbbb Mon Sep 17 00:00:00 2001 From: "m@yim.jp" Date: Sun, 11 Jan 2026 10:12:37 +0000 Subject: [PATCH 2/4] deps: group aws-sdk and charm packages --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fa06c365..bc735963 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,6 +9,13 @@ updates: labels: - "dependencies" open-pull-requests-limit: 5 + groups: + aws-sdk: + patterns: + - "github.com/aws/aws-sdk-go-v2*" + charm: + patterns: + - "charm.land/*" - package-ecosystem: "github-actions" directory: "/" From 4cb55f6540c4d325ecc85ff43c7e888476bf351a Mon Sep 17 00:00:00 2001 From: "m@yim.jp" Date: Sun, 11 Jan 2026 10:15:40 +0000 Subject: [PATCH 3/4] deps: add charmbracelet and golang-x groups --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bc735963..ce1244e7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,6 +16,10 @@ updates: charm: patterns: - "charm.land/*" + - "github.com/charmbracelet/*" + golang-x: + patterns: + - "golang.org/x/*" - package-ecosystem: "github-actions" directory: "/" From 07000a36148a695bb6b6b92de3404984050c99bd Mon Sep 17 00:00:00 2001 From: "m@yim.jp" Date: Sun, 11 Jan 2026 10:18:24 +0000 Subject: [PATCH 4/4] deps: add smithy-go to aws-sdk group --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ce1244e7..36309f1d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,6 +13,7 @@ updates: aws-sdk: patterns: - "github.com/aws/aws-sdk-go-v2*" + - "github.com/aws/smithy-go" charm: patterns: - "charm.land/*"