File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ # To get started with Dependabot version updates, you'll need to specify which
3+ # package ecosystems to update and where the package manifests are located.
4+ # Please see the documentation for all configuration options:
5+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
6+
7+ version : 2
8+ updates :
9+ # Schedule for go module updates
10+ - package-ecosystem : " gomod"
11+ directory : " /"
12+ schedule :
13+ interval : " daily"
14+ time : " 18:00"
15+ allow :
16+ # Allow both direct and indirect updates for all packages
17+ - dependency-type : all
18+ # a group of dependencies will be updated together in one pull request
19+ groups :
20+ golang :
21+ # group all semantic versioning levels together in one pull request
22+ update-types :
23+ - major
24+ - minor
25+ - patch
26+ patterns :
27+ - " *"
28+
29+ # github actions
30+ - package-ecosystem : " github-actions"
31+ directory : " /"
32+ schedule :
33+ # Check for updates to GitHub Actions every week
34+ interval : " weekly"
35+ day : " saturday"
36+ groups :
37+ github-actions :
38+ patterns :
39+ - " *"
You can’t perform that action at this time.
0 commit comments