Skip to content

Commit 3bb7b93

Browse files
authored
[CI] add tags in the Makefile for renovate support (#237)
<!-- If this is your first PR, welcome! Please make sure you read the [contributing guidelines](../CONTRIBUTING.md). --> <!-- Ensure your PR title complies with the following guidelines 1. All PRs titles should start with one of the following prefixes - `[fix]` for PRs related to bug fixes and patches - `[feat]` for PRs related to new features - `[improvement]` for PRs related to improvements of existing features - `[test]` for PRs related to tests - `[CI]` for PRs related to repo CI improvements - `[docs]` for PRs related to documentation updates - `[deps]` for PRs related to dependency updates 2. if a PR introduces a breaking change it should include `[breaking]` in the title 3. if a PR introduces a deprecation it should include `[deprecation]` in the title --> **What this PR does / why we need it**: **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes # **Special notes for your reviewer**: **TODOs**: <!-- Put an "X" character inside the brackets of each completed task. Some may be optional depending on the PR. --> - [ ] squashed commits - [ ] includes documentation - [ ] adds unit tests - [ ] adds or updates e2e tests
1 parent 9a8ff74 commit 3bb7b93

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

Makefile

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ test-integration: ## Run integration tests.
121121
go test \
122122
-tags=integration \
123123
-race \
124-
-cover -coverprofile=coverage.out \
124+
-cover -coverprofile=integration-coverage.out \
125125
./...
126126

127127
.PHONY: test-e2e
@@ -220,14 +220,22 @@ TILT ?= $(LOCALBIN)/tilt
220220

221221
## Tool Versions
222222
CHAINSAW_VERSION ?= v0.2.12
223-
CTLPTL_VERSION ?= v0.8.39
224-
GOLANGCI_LINT_VERSION ?= v2.7.1
223+
# renovate: datasource=go depName=github.com/tilt-dev/ctlptl
224+
CTLPTL_VERSION ?= v0.8.44
225+
# renovate: datasource=github-tags depName=golangci/golangci-lint
226+
GOLANGCI_LINT_VERSION ?= v2.7.2
227+
# renovate: datasource=go depName=helm.sh/helm/v3/cmd/helm
225228
HELM_VERSION ?= v3.17.1
229+
# renovate: datasource=go depName=github.com/norwoodj/helm-docs/cmd/helm-docs
226230
HELM_DOCS_VERSION ?= v1.14.2
231+
# renovate: datasource=go depName=github.com/losisin/helm-values-schema-json
227232
HELM_VALUES_SCHEMA_JSON_VERSION ?= v1.7.0
233+
# renovate: datasource=go depName=sigs.k8s.io/kind
228234
KIND_VERSION ?= v0.29.0
235+
# renovate: datasource=go depName=golang.stackrox.io/kube-linter/cmd/kube-linter
229236
KUBE_LINTER_VERSION ?= v0.7.1
230-
TILT_VERSION ?= 0.35.0
237+
# renovate: datasource=github-tags depName=tilt-dev/tilt
238+
TILT_VERSION ?= 0.36.0
231239

232240
.PHONY: chainsaw
233241
chainsaw: $(CHAINSAW)-$(CHAINSAW_VERSION) ## Download chainsaw locally if necessary.

0 commit comments

Comments
 (0)