Skip to content

Commit d1536c4

Browse files
authored
fix(actions): create dependabot.yml
1 parent 806ea20 commit d1536c4

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/dependabot.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
version: 2
2+
updates:
3+
# Enable version updates for base npm
4+
- package-ecosystem: "npm"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
# Enable version updates for GitHub Actions
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"
13+
# Enable version updates for automations uv
14+
- package-ecosystem: "uv"
15+
directory: "/automations/"
16+
schedule:
17+
interval: "weekly"
18+
# Enable version updates for examples uv
19+
- package-ecosystem: "uv"
20+
directory: "/examples/developer-hub-python/"
21+
schedule:
22+
interval: "weekly"
23+
# Enable version updates for examples js
24+
- package-ecosystem: "npm"
25+
directory: "/examples/developer-hub-javascript/"
26+
schedule:
27+
interval: "weekly"
28+
# Enable version updates for examples go
29+
- package-ecosystem: "gomod"
30+
directory: "/examples/developer-hub-go/"
31+
schedule:
32+
interval: "weekly"
33+
# Enable version updates for examples rust
34+
- package-ecosystem: "cargo"
35+
directory: "/examples/developer-hub-rust/"
36+
schedule:
37+
interval: "weekly"

0 commit comments

Comments
 (0)