File tree Expand file tree Collapse file tree 2 files changed +18
-3
lines changed
Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 5151 "managerFilePatterns" : [
5252 "logging-k8s-stdout-otlp-json/k8s/**"
5353 ]
54- }
54+ } ,
55+ "customManagers" : [
56+ {
57+ "customType" : "regex" ,
58+ "managerFilePatterns" : [
59+ "**/*.sh"
60+ ] ,
61+ "matchStrings" : [
62+ "# renovate: datasource=(?<datasource>[a-zA-Z0-9-._]+?) depName=(?<depName>[^\\s]+?)\\s+[A-Za-z0-9_]+?_VERSION\\s*=\\s*[\"']?(?<currentValue>.+?)[\"']?\\s"
63+ ]
64+ }
65+ ]
5566}
Original file line number Diff line number Diff line change @@ -10,8 +10,12 @@ pushd javaagent-declarative-configuration
1010../gradlew bootJar
1111popd
1212
13- wget -q -O - https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash
13+ # renovate: datasource=github-releases depName=k3d-io/k3d
14+ K3D_VERSION=v5.8.3
15+ wget -q -O - https://raw.githubusercontent.com/k3d-io/k3d/${K3D_VERSION} /install.sh | TAG=${K3D_VERSION} bash
1416
15- go install github.com/grafana/oats@v0.3.1
17+ # renovate: datasource=go depName=github.com/grafana/oats
18+ OATS_VERSION=v0.3.1
19+ go install github.com/grafana/oats@${OATS_VERSION}
1620oats -timeout 5m logging-k8s-stdout-otlp-json/
1721oats -timeout 5m javaagent-declarative-configuration/oats/
You can’t perform that action at this time.
0 commit comments