Skip to content

Commit 6f93222

Browse files
authored
chore(NODE-6514): update dependabot config (#37)
1 parent d154aae commit 6f93222

File tree

1 file changed

+33
-2
lines changed

1 file changed

+33
-2
lines changed

.github/dependabot.yml

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,37 @@
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+
16
version: 2
27
updates:
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"

0 commit comments

Comments
 (0)