We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f4e976 commit c5b78d6Copy full SHA for c5b78d6
.github/dependabot.yml
@@ -8,8 +8,10 @@
8
---
9
version: 2
10
updates:
11
+ # Update all workflows and local composite actions.
12
- package-ecosystem: github-actions
13
directories:
14
+ # "/" is a special case that includes ".github/workflows/*"
15
- '/'
16
- '.github/actions/*'
17
schedule:
@@ -18,3 +20,18 @@ updates:
18
20
groups:
19
21
all-github-actions:
22
patterns: ['*']
23
+
24
+ # Go "x" modules and Go and Google gRPC modules:
25
+ # https://pkg.go.dev/golang.org/x
26
+ # https://cloud.google.com/go/google.golang.org
27
+ - package-ecosystem: gomod
28
+ directory: '/'
29
+ schedule:
30
+ interval: weekly
31
+ day: wednesday
32
+ groups:
33
+ golang-org-modules:
34
+ patterns:
35
+ - 'golang.org/x/*'
36
+ - 'github.com/golang/*'
37
+ - 'google.golang.org/*'
0 commit comments