Skip to content

Commit

Permalink
enhance(renovate): manage golangci, ensure actions are pinned (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
wass3rw3rk authored Aug 21, 2023
1 parent 280e562 commit 9727cd3
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,39 @@
{
"extends": [
"config:base"
"config:base",
"docker:pinDigests",
"helpers:pinGitHubActionDigests"
],
"labels": [
"dependencies"
],
"semanticCommits": "enabled",
"golang": {
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
]
},
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
],
"packageRules": [
{
"description": "Automerge non-major updates",
"matchUpdateTypes": [
"minor",
"digest",
"patch",
"pin"
"pin",
"pinDigest"
],
"groupName": "mergeable deps",
"groupName": "non-major deps",
"automerge": true
}
],
"regexManagers": [
{
"fileMatch": ["^Makefile$"],
"matchStrings": [
"GOLANGCI_LINT_VERSION := \"(?<currentValue>.*?)\"\\n"
],
"depNameTemplate": "github.com/golangci/golangci-lint",
"datasourceTemplate": "go"
}
]
}

0 comments on commit 9727cd3

Please sign in to comment.