-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: Hash-pin sensitive workflow dependencies and enable dependab…
…ot for them (#332) * feat: hash-pin sensitive workflows Signed-off-by: Diogo Teles Sant'Anna <[email protected]> * feat: configure dependabot to run over github actions This also is specifying how dependabot will work on updates for go modules. The config is set up to: - Update github actions together in a single monthly PR - Version updates for GO modules from "/go.mod" will be sent together in a weekly PR. - Version updates for GO modules from "/v2/go.mod" will be sent separately from the ones in "/go.mod", but will also be sent together in a weekly PR. Signed-off-by: Diogo Teles Sant'Anna <[email protected]> --------- Signed-off-by: Diogo Teles Sant'Anna <[email protected]>
- Loading branch information
1 parent
0bd0398
commit aabaab1
Showing
2 changed files
with
33 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
groups: | ||
github-actions: | ||
patterns: | ||
- "*" | ||
|
||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
groups: | ||
github-actions: | ||
patterns: | ||
- "*" | ||
|
||
- package-ecosystem: "gomod" | ||
directory: "/v2" | ||
schedule: | ||
interval: "weekly" | ||
groups: | ||
github-actions: | ||
patterns: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters