Skip to content

Commit 98b70c7

Browse files
committed
1 parent 9555e6c commit 98b70c7

File tree

1 file changed

+51
-17
lines changed

1 file changed

+51
-17
lines changed

.github/dependabot.yml

Lines changed: 51 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,63 @@
11
---
22
version: 2
3+
4+
registries:
5+
ghcr:
6+
type: "docker-registry"
7+
url: "ghcr.io"
8+
username: "PAT"
9+
password: "${{secrets.CONTAINER_BUILDER_TOKEN}}"
10+
rubygems-github-packages:
11+
type: "rubygems-server"
12+
url: "rubygems.pkg.github.com/github"
13+
token: "${{secrets.CONTAINER_BUILDER_TOKEN}}"
14+
315
updates:
4-
- package-ecosystem: bundler
16+
- package-ecosystem: "bundler"
517
vendor: true
618
directory: "/"
7-
schedule:
8-
interval: weekly
9-
day: "monday"
10-
time: "21:00"
19+
registries: ["rubygems-github-packages"]
1120
groups:
12-
prod-ruby-dependencies:
21+
ruby-gems-production:
1322
dependency-type: "production"
14-
patterns:
15-
- "*"
16-
dev-ruby-dependencies:
23+
patterns: ["*"]
24+
dev-ruby-development:
1725
dependency-type: "development"
18-
patterns:
19-
- "*"
20-
- package-ecosystem: github-actions
26+
patterns: ["*"]
27+
schedule:
28+
interval: "weekly"
29+
30+
- package-ecosystem: "docker"
31+
directory: "/"
32+
registries: ["ghcr"]
33+
groups:
34+
container-images:
35+
patterns: ["*"]
36+
schedule:
37+
interval: "weekly"
38+
39+
- package-ecosystem: "github-actions"
2140
directory: "/"
2241
groups:
2342
github-actions:
24-
patterns:
25-
- "*"
43+
patterns: ["*"]
44+
ignore:
45+
- dependency-name: "github/internal-actions"
2646
schedule:
27-
interval: weekly
28-
day: "tuesday"
29-
time: "21:00"
47+
interval: "weekly"
48+
49+
- package-ecosystem: "pip"
50+
directory: "/"
51+
schedule:
52+
interval: "weekly"
53+
groups:
54+
python-packages:
55+
patterns: ["*"]
56+
57+
- package-ecosystem: "gomod"
58+
directory: "/"
59+
schedule:
60+
interval: "weekly"
61+
groups:
62+
go-packages:
63+
patterns: ["*"]

0 commit comments

Comments
 (0)