File tree Expand file tree Collapse file tree 1 file changed +33
-2
lines changed Expand file tree Collapse file tree 1 file changed +33
-2
lines changed Original file line number Diff line number Diff line change 1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
16version : 2
27updates :
3- - package-ecosystem : " github-actions"
4- directory : " /"
8+ - package-ecosystem : " github-actions" # See documentation for possible values
9+ directory : " /" # Location of package manifests
510 schedule :
611 interval : " monthly"
12+ - package-ecosystem : " npm" # See documentation for possible values
13+ directory : " /" # Location of package manifests
14+ schedule :
15+ interval : " monthly"
16+ ignore :
17+ # chai is esmodule only.
18+ - dependency-name : " chai"
19+ versions : [">=5.0.0"]
20+ # sinon-chai 4.x+ supports chai 5.x+.
21+ - dependency-name : " sinon-chai"
22+ versions : [">=4.0.0"]
23+ # chalk is esmodule only.
24+ - dependency-name : " chalk"
25+ versions : [">=5.0.0"]
26+ # nyc is Node18+ only starting on [email protected] . 27+ - dependency-name : " nyc"
28+ versions : [">=16.0.0"]
29+ # we ignore TS as a part of quarterly dependency updates.
30+ - dependency-name : " typescript"
31+ groups :
32+ development-dependencies :
33+ dependency-type : " development"
34+ applies-to : version-updates
35+ update-types :
36+ - " minor"
37+ - " patch"
You can’t perform that action at this time.
0 commit comments