Skip to content

Commit ec3dbc8

Browse files
authored
chore(deps): pin helm dependency to version 3 (#3266)
1 parent 77f195c commit ec3dbc8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
env:
4646
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4747
run: |
48-
version=$(gh release list --repo helm/helm --json tagName,isLatest | jq -r '.[] | select(.isLatest) | .tagName')
48+
version=$(gh release list --repo helm/helm --json tagName,createdAt | jq -r '.[] | select(.tagName | startswith("v3.")) | .tagName' | head -1)
4949
echo "helm version: $version"
5050
sed -i "/^HELM_VERSION/c\HELM_VERSION = $version" versions.mk
5151

versions.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ K0S_GO_VERSION = $(K0S_VERSION_1_$(K0S_MINOR_VERSION))
2020
TROUBLESHOOT_VERSION = v0.122.0
2121

2222
# Helm Version
23-
HELM_VERSION = v3.19.0
23+
HELM_VERSION = v3.19.2
2424

2525
# FIO Version (for performance testing)
2626
FIO_VERSION = 3.41
2727

2828
# Kubernetes Development Tool Versions
2929
CONTROLLER_TOOLS_VERSION = v0.19.0
30-
KUSTOMIZE_VERSION = v5.7.1
30+
KUSTOMIZE_VERSION = v5.8.0
3131

3232
### Overrides ###
3333

0 commit comments

Comments
 (0)