From 92c9862a2646dd35214a5e663f4f96db1954f575 Mon Sep 17 00:00:00 2001 From: Oluwatobi Shokunbi Date: Fri, 19 Jun 2026 13:53:42 +0100 Subject: [PATCH 1/2] chore: add dependabot configuration for automated dependency updates Adds dependabot.yml to keep Gradle dependencies and GitHub Actions up to date on a daily schedule with 7-day cooldown. PRs target the dependency-updates branch. --- .github/dependabot.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..3f9d1df7e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,27 @@ +version: 2 +updates: + - package-ecosystem: 'gradle' + directory: '/' + schedule: + interval: 'daily' + cooldown: + default-days: 7 + semver-major-days: 7 + semver-minor-days: 7 + semver-patch-days: 7 + target-branch: dependency-updates + labels: + - 'dependencies' + + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'daily' + cooldown: + default-days: 7 + semver-major-days: 7 + semver-minor-days: 7 + semver-patch-days: 7 + target-branch: dependency-updates + labels: + - 'dependencies' From 2673e1339ccb2b5300754e3bf608d078e78945e3 Mon Sep 17 00:00:00 2001 From: Oluwatobi Shokunbi Date: Fri, 19 Jun 2026 14:37:04 +0100 Subject: [PATCH 2/2] Update dependabot.yml --- .github/dependabot.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3f9d1df7e..a50d1abb3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,7 +9,6 @@ updates: semver-major-days: 7 semver-minor-days: 7 semver-patch-days: 7 - target-branch: dependency-updates labels: - 'dependencies' @@ -22,6 +21,5 @@ updates: semver-major-days: 7 semver-minor-days: 7 semver-patch-days: 7 - target-branch: dependency-updates labels: - 'dependencies'