Skip to content

Commit b89f5cf

Browse files
chore: Add Dependabot version-update cooldown (#119)
This pull request was auto generated by the LaunchDarkly Github Standards automation platform. * Ensure every entry under `updates` in `.github/dependabot.yml` declares a cooldown of at least 7 days (default-days). * Add entries for detected package ecosystems that were not yet tracked by Dependabot. Cooldown applies only to version updates; security updates bypass it, so critical CVE fixes are never delayed. Ref: SEC-8058. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > CI/dependency automation only; no application runtime or security logic changes. > > **Overview** > Introduces **`.github/dependabot.yml`** so Dependabot tracks **GitHub Actions** and **Go modules** at the repo root on a **weekly** schedule. > > Each ecosystem sets **`cooldown.default-days: 7`**, spacing routine version bumps; **security updates are not delayed** by this cooldown (per Dependabot behavior). > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit cd767d3. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY --> Co-authored-by: ld-repository-standards[bot] <113625520+ld-repository-standards[bot]@users.noreply.github.com>
1 parent 1213d86 commit b89f5cf

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
cooldown:
8+
default-days: 7
9+
- package-ecosystem: "gomod"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"
13+
cooldown:
14+
default-days: 7

0 commit comments

Comments
 (0)