From 30d2b0b22b179c68b3675098cf52e73983d38c33 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Wed, 17 Sep 2025 00:25:15 +0900 Subject: [PATCH] Enable Dependabot Configure Dependabot to automatically detect updates to the actions used in GitHub Actions (e.g., `actions/checkout`) and create pull requests for them. Based on experience, checking for updates on a weekly interval should work well. --- dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 dependabot.yml diff --git a/dependabot.yml b/dependabot.yml new file mode 100644 index 0000000..b18fd29 --- /dev/null +++ b/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'weekly'