From 37d3e4f5e50a08b86a8f89600fca92224aa94674 Mon Sep 17 00:00:00 2001 From: Oluwatobi Shokunbi Date: Fri, 19 Jun 2026 13:53:41 +0100 Subject: [PATCH 1/2] chore: add dependabot configuration for automated dependency updates Adds dependabot.yml to keep Swift Package Manager dependencies, Ruby bundler gems, and GitHub Actions up to date on a daily schedule with 7-day cooldown. PRs target the dependency-updates branch. --- .github/dependabot.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..8f51c009ad --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,40 @@ +version: 2 +updates: + - package-ecosystem: 'swift' + 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: 'bundler' + 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 028dfaec4fd89bf477803d5c116800bd77a9420f Mon Sep 17 00:00:00 2001 From: Oluwatobi Shokunbi Date: Fri, 19 Jun 2026 14:36:56 +0100 Subject: [PATCH 2/2] Update dependabot.yml --- .github/dependabot.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8f51c009ad..2b22b161bf 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,7 +21,6 @@ updates: semver-major-days: 7 semver-minor-days: 7 semver-patch-days: 7 - target-branch: dependency-updates labels: - 'dependencies' @@ -35,6 +33,5 @@ updates: semver-major-days: 7 semver-minor-days: 7 semver-patch-days: 7 - target-branch: dependency-updates labels: - 'dependencies'