Skip to content

Commit 4cb40ad

Browse files
authored
Create dependabot.yml
1 parent bbd60d6 commit 4cb40ad

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/dependabot.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
- "*"

0 commit comments

Comments
 (0)