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
@ -10,7 +10,7 @@ RUN make install \
PREFIX=/usr \
VERSION=${VERSION}
FROM docker.io/library/alpine:3.19.1
FROM docker.io/library/alpine:3.19
COPY --from=build /cache /

View File

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