fix(ci): update renovate config
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Markus Pesch 2024-03-02 13:42:00 +01:00
parent a6b4fd0afc
commit 6ced20b951
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
2 changed files with 11 additions and 7 deletions

View File

@ -1,4 +1,4 @@
FROM docker.io/library/golang:1.22.0-alpine3.18 AS build FROM docker.io/library/golang:1.22.0-alpine3.19 AS build
RUN apk add git make RUN apk add git make
@ -10,7 +10,7 @@ RUN make install \
PREFIX=/usr \ PREFIX=/usr \
VERSION=${VERSION} VERSION=${VERSION}
FROM docker.io/library/alpine:3.19.1 FROM docker.io/library/alpine:3.19
COPY --from=build /cache / COPY --from=build /cache /

View File

@ -15,15 +15,19 @@
"automerge": true, "automerge": true,
"matchBaseBranches": [ "master" ], "matchBaseBranches": [ "master" ],
"matchManagers": [ "dockerfile" ], "matchManagers": [ "dockerfile" ],
"matchUpdateTypes": [ "patch" ] "matchUpdateTypes": [ "minor", "patch" ]
}, },
{ {
"addLabels": [ "renovate/dcmerge", "renovate/automerge" ], "description": "Automatically update minor and patch versions of go modules",
"automerge": false, "addLabels": [ "renovate/gomod", "renovate/automerge" ],
"matchPackageNames": [ "dcmerge" ], "automerge": true,
"matchManagers": [ "regex" ] "matchManagers": [ "gomod" ],
"matchUpdateTypes": [ "minor", "patch" ]
} }
], ],
"postUpdateOptions": [
"gomodTidy"
],
"rebaseLabel": "renovate/rebase", "rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch" "rebaseWhen": "behind-base-branch"
} }