chore(renovate): add renovate configuration and lint github workflow

This commit is contained in:
Vadim Aleksandrov
2024-07-15 16:29:58 +03:00
parent d768b1ec10
commit ce8eeabf9e
2 changed files with 48 additions and 0 deletions

29
.renovaterc Normal file
View File

@ -0,0 +1,29 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":disableRateLimiting",
":disableVulnerabilityAlerts"
],
"labels": [
"dependencies"
],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
],
"reviewersFromCodeOwners": true,
"enabledManagers": [
"gomod",
"dockerfile",
"github-actions"
],
"packageRules": [
{
"matchDatasources": [
"golang-version"
],
"rangeStrategy": "bump"
}
]
}