Skip to content

Commit

Permalink
feat(renovate): also group github-action digest pins
Browse files Browse the repository at this point in the history
  • Loading branch information
Breee committed Mar 1, 2024
1 parent c9b5a93 commit c205fd5
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,35 @@
"baseBranches": [
"main"
],
"postUpdateOptions": ["gomodTidy"],
"postUpdateOptions": [
"gomodTidy"
],
"dependencyDashboard": true,
"recreateClosed": true,
"packageRules": [
{
"groupName": "godeps",
"matchManagers": ["gomod"],
"matchUpdateTypes": ["major", "minor", "patch"]
"matchManagers": [
"gomod"
],
"matchUpdateTypes": [
"major",
"minor",
"patch",
"digest"
]
},
{
"groupName": "github-actions",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major","minor", "patch"],
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"major",
"minor",
"patch",
"digest"
],
"automerge": true
}
]
Expand Down

0 comments on commit c205fd5

Please sign in to comment.