From eb5ae4542121d118160be0483ba3e484b9e8e954 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Mon, 20 Apr 2026 23:45:31 +0900 Subject: [PATCH 1/2] Configure Dependabot for Go modules --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..6090a505 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" From 6b9edfd056e42d99ab6b114170b49d0b6494c96e Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Mon, 20 Apr 2026 23:49:08 +0900 Subject: [PATCH 2/2] Add GitHub Actions to Dependabot configuration --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6090a505..41763197 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,8 @@ updates: directory: "/" schedule: interval: "weekly" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"