Skip to content

Commit dc7a404

Browse files
authored
Pin k3d dependency (#890)
1 parent 38cfe9f commit dc7a404

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

.github/renovate.json5

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,16 @@
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
}

.github/scripts/run-oats-tests.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ pushd javaagent-declarative-configuration
1010
../gradlew bootJar
1111
popd
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}
1620
oats -timeout 5m logging-k8s-stdout-otlp-json/
1721
oats -timeout 5m javaagent-declarative-configuration/oats/

0 commit comments

Comments
 (0)