Skip to content

Commit

Permalink
ci: fix renovate config (#555)
Browse files Browse the repository at this point in the history
mowies authored Jan 5, 2023
1 parent 5220e9d commit 39fa73f
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ on:
- '[0-9]+.[1-9][0-9]*.x'
env:
GO_VERSION: "~1.19"
# renovate: datasource=github-tags depName=kubernetes-sigs/controller-tools
# renovate: datasource=github-releases depName=kubernetes-sigs/controller-tools
CONTROLLER_TOOLS_VERSION: "v0.9.2"
ENVTEST_K8S_VERSION: "1.24.2"
SCHEDULER_COMPATIBLE_K8S_VERSION: "v0.24.3"
4 changes: 2 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ on:
env:
GO_VERSION: "~1.19"
# renovate: datasource=github-tags depName=kudobuilder/kuttl
KUTTL_VERSION: "0.13.0"
KUTTL_VERSION: "v0.13.0"
defaults:
run:
shell: bash
@@ -29,7 +29,7 @@ jobs:

- name: Download KUTTL
run: |
curl -fL https://github.com/kudobuilder/kuttl/releases/download/v${{ env.KUTTL_VERSION }}/kubectl-kuttl_${{ env.KUTTL_VERSION }}_linux_x86_64 -o kubectl-kuttl
curl -fL https://github.com/kudobuilder/kuttl/releases/download/${{ env.KUTTL_VERSION }}/kubectl-kuttl_${KUTTL_VERSION#v}_linux_x86_64 -o kubectl-kuttl
chmod +x kubectl-kuttl
mv kubectl-kuttl /usr/local/bin
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ defaults:

env:
GO_VERSION: "~1.19"
# renovate: datasource=github-tags depName=kubernetes-sigs/controller-tools
# renovate: datasource=github-releases depName=kubernetes-sigs/controller-tools
CONTROLLER_TOOLS_VERSION: "v0.9.2"
SCHEDULER_COMPATIBLE_K8S_VERSION: "v0.24.3"

2 changes: 1 addition & 1 deletion operator/Makefile
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ ENVTEST_K8S_VERSION=1.24.2
## Tool Versions
# renovate: datasource=github-tags depName=kubernetes-sigs/kustomize
KUSTOMIZE_VERSION?=v4.5.7
# renovate: datasource=github-tags depName=kubernetes-sigs/controller-tools
# renovate: datasource=github-releases depName=kubernetes-sigs/controller-tools
CONTROLLER_TOOLS_VERSION?=v0.10.0

# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
4 changes: 2 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -53,10 +53,10 @@
{
"fileMatch": [
"(^|\\/)Makefile$",
"^\\.github\\/.*\\/.*\\.ya?ml$"
"(^|\\/).*\\.ya?ml$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)\\s.*?_VERSION ?\\??= ?(?<currentValue>.+?)?\\s"
"# renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)\\s.*?_VERSION ?(\\??=|\\: ?) ?\\\"?(?<currentValue>.+?)?\\\"?\\s"
]
}
]

0 comments on commit 39fa73f

Please sign in to comment.