mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
a0bdf0c889
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
55 lines
1.0 KiB
JSON
55 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:base",
|
|
":preserveSemverRanges",
|
|
"helpers:pinGitHubActionDigests",
|
|
":separateMajorReleases"
|
|
],
|
|
"addLabels": [
|
|
"dependencies"
|
|
],
|
|
"postUpdateOptions": [
|
|
"gomodUpdateImportPaths"
|
|
],
|
|
"postUpgradeTasks": {
|
|
"commands": [
|
|
"for mod in $(go list -f '{{.Dir}}' -m); do (cd $mod; go mod tidy); done"
|
|
],
|
|
"fileFilters": [
|
|
"**/go.mod",
|
|
"**/go.sum"
|
|
]
|
|
},
|
|
"ignorePaths": [
|
|
"cli/internal/helm/charts/cilium/**"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"matchPackagePatterns": [
|
|
"^k8s.io",
|
|
"^sigs.k8s.io"
|
|
],
|
|
"groupName": "k8s dependencies"
|
|
},
|
|
{
|
|
"matchPackagePatterns": [
|
|
"^go.etcd.io/etcd"
|
|
],
|
|
"groupName": "etcd"
|
|
},
|
|
{
|
|
"matchDatasources": [
|
|
"golang-version"
|
|
],
|
|
"allowedVersions": "1.18"
|
|
},
|
|
{
|
|
"matchManagers": [
|
|
"github-actions"
|
|
],
|
|
"groupName": "github actions dependencies"
|
|
}
|
|
]
|
|
}
|