Compare commits
5 Commits
e14fd129f6
...
0.15.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 78ad0f0588 | |||
| f8788986cb | |||
| 444178a987 | |||
| 18683271ea | |||
| b4939f348d |
+34
@@ -5,6 +5,40 @@
|
||||
{
|
||||
"matchManagers": ["github-actions"],
|
||||
"addLabels": ["deps", "action"]
|
||||
},
|
||||
{
|
||||
"matchManagers": ["github-actions"],
|
||||
"matchUpdateTypes": ["minor", "patch"],
|
||||
"matchPackageNames": [
|
||||
"https://gitea.t000-n.de/t.behrendt/actions/*",
|
||||
"https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment",
|
||||
"https://gitea.t000-n.de/t.behrendt/k_deploy_workflows",
|
||||
"https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action",
|
||||
|
||||
"actions/checkout",
|
||||
"actions/cache",
|
||||
"actions/cache/*",
|
||||
"actions/setup-go",
|
||||
|
||||
"azure/setup-kubectl",
|
||||
"azure/setup-helm",
|
||||
"azure/k8s-set-context",
|
||||
"azure/k8s-create-secret",
|
||||
"azure/k8s-deploy",
|
||||
"azure/k8s-lint",
|
||||
|
||||
"helmfile/helmfile-action",
|
||||
|
||||
"docker/setup-buildx-action",
|
||||
"docker/login-action",
|
||||
"docker/build-push-action",
|
||||
|
||||
"oven-sh/setup-bun"
|
||||
],
|
||||
"automerge": true,
|
||||
"platformAutomerge": true,
|
||||
"automergeType": "pr",
|
||||
"addLabels": ["automerge"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
+29
-11
@@ -2,20 +2,38 @@
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"dependencyDashboard": true,
|
||||
"semanticCommits": "enabled",
|
||||
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"],
|
||||
"extends": [
|
||||
"config:recommended",
|
||||
"docker:pinDigests",
|
||||
"helpers:pinGitHubActionDigests",
|
||||
":configMigration",
|
||||
":pinDevDependencies",
|
||||
"abandonments:recommended",
|
||||
":maintainLockFilesWeekly",
|
||||
":semanticCommitTypeAll(chore)"
|
||||
],
|
||||
"packageRules": [
|
||||
{
|
||||
"description": "Don't update dependencies unless they are at least 7 days old",
|
||||
"matchPackageNames": ["*"],
|
||||
"description": "Don't update dependencies unless they are at least 7 days old (except for internal deps).",
|
||||
"matchPackageNames": [
|
||||
"!https://gitea.t000-n.de/t.behrendt/**"
|
||||
],
|
||||
"minimumReleaseAge": "7 days",
|
||||
"minimumReleaseAgeBehaviour": "timestamp-required",
|
||||
"internalChecksFilter": "strict"
|
||||
},
|
||||
{
|
||||
"description": "Exempt local dependencies from the minimum release age (last rule wins over earlier packageRules for the same options)",
|
||||
"matchPackageNames": ["/^(https:\\/\\/)?gitea\\.t000-n\\.de/"],
|
||||
"minimumReleaseAge": "0 days",
|
||||
"internalChecksFilter": "none"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"osvVulnerabilityAlerts": true,
|
||||
"dependencyDashboardOSVVulnerabilitySummary": "all",
|
||||
"vulnerabilityAlerts": {
|
||||
"enabled": true,
|
||||
"automerge": true,
|
||||
"platformAutomerge": true,
|
||||
"automergeType": "pr",
|
||||
"addLabels": [
|
||||
"automerge",
|
||||
"security"
|
||||
],
|
||||
"vulnerabilityFixStrategy": "lowest"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user