Skip to content

Commit 46b99f0

Browse files
authored
chore: update dependabot configuration (#630)
* chore: update dependabot.yml * fix: typo in dependabot.yml for action path * chore: configure cooldown for Dependabot updates Added cooldown settings for major, minor, and patch updates in Dependabot configuration. * chore: set default cooldown for Dependabot updates Added default cooldown of 7 days for updates. * fix: formatting in dependabot configuration
1 parent c7b359a commit 46b99f0

File tree

1 file changed

+34
-5
lines changed

1 file changed

+34
-5
lines changed

.github/dependabot.yml

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,47 @@
66
version: 2
77
updates:
88
- package-ecosystem: "github-actions"
9-
directory: "/"
9+
directories:
10+
- "/"
11+
- "/actions/assets-action"
12+
- "/actions/branch-action"
13+
- "/actions/cdxgen"
14+
- "/actions/charts-values-update-action"
15+
- "/actions/chart-version"
16+
- "/actions/container-package-cleanup"
17+
- "/actions/custom-event"
18+
- "/actions/docker-action"
19+
- "/actions/docker-config-resolver"
20+
- "/actions/ghcr-discover-repo-packages"
21+
- "/actions/maven-release"
22+
- "/actions/maven-snapshot-deploy"
23+
- "/actions/metadata-action"
24+
- "/actions/poetry-publisher"
25+
- "/actions/pr-add-messages"
26+
- "/actions/pr-assigner"
27+
- "/actions/smart-download"
28+
- "/actions/store-input-params"
29+
- "/actions/tag-action"
30+
- "/actions/verify-json"
31+
- "/actions/wait-for-workflow"
1032
schedule:
1133
interval: "weekly"
34+
cooldown:
35+
default-days: 7
1236
- package-ecosystem: "npm"
1337
directories:
14-
- "/actions/archive-and-upload-assets"
1538
- "/actions/assets-action"
1639
- "/actions/container-package-cleanup"
1740
- "/actions/custom-event"
1841
- "/actions/metadata-action"
19-
- "/actions/pom-updater"
2042
- "/actions/pr-assigner"
21-
- "/actions/tag-checker"
2243
schedule:
23-
interval: "weekly"
44+
interval: "weekly"
45+
cooldown:
46+
default-days: 7
47+
# Wait 14 days for a major version update (e.g., 1.x.x to 2.x.x)
48+
semver-major-days: 14
49+
# Wait 7 days for a minor version update (e.g., 1.1.x to 1.2.x)
50+
semver-minor-days: 7
51+
# Wait 3 days for a patch version update (e.g., 1.1.1 to 1.1.2)
52+
semver-patch-days: 3

0 commit comments

Comments
 (0)