Skip to content

Commit

Permalink
update makefile dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bakito committed Sep 27, 2024
1 parent f62b6f9 commit 9895d6d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,17 @@ OAPI_CODEGEN ?= $(LOCALBIN)/oapi-codegen
SEMVER ?= $(LOCALBIN)/semver

## Tool Versions
# renovate: packageName=k8s.io/code-generator/cmd/deepcopy-gen
DEEPCOPY_GEN_VERSION ?= v0.31.1
# renovate: packageName=github.com/golangci/golangci-lint/cmd/golangci-lint
GOLANGCI_LINT_VERSION ?= v1.61.0
# renovate: packageName=github.com/goreleaser/goreleaser/v2
GORELEASER_VERSION ?= v2.3.2
# renovate: packageName=go.uber.org/mock/mockgen
MOCKGEN_VERSION ?= v0.4.0
# renovate: packageName=github.com/deepmap/oapi-codegen/v2/cmd/oapi-codegen
OAPI_CODEGEN_VERSION ?= v2.4.0
# renovate: packageName=github.com/bakito/semver
SEMVER_VERSION ?= v1.1.3

## Tool Installer
Expand Down
15 changes: 14 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true
"dependencyDashboard": true,
"customManagers": [
{
"customType": "regex",
"description": "Update toolbox _VERSION variables in Makefile",
"fileMatch": [
"^Makefile$"
],
"matchStrings": [
"# renovate: packageName=(?<packageName>.+?)\\s+.+?_VERSION \\?= (?<currentValue>.+?)\\s"
],
"datasourceTemplate": "go"
}
]
}

0 comments on commit 9895d6d

Please sign in to comment.