Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/kind-e2e-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ runs:
- name: Install kind and helm
shell: bash
env:
HELM_VERSION: v3.17.3
HELM_VERSION: v3.21.4
run: |
set -euo pipefail
mkdir -p ~/.cache/kind
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
run: bash hack/test/demo_04_samples_kustomize_test.sh
- name: Install Helm
env:
HELM_VERSION: v3.17.3
HELM_VERSION: v3.21.4
run: bash hack/install-helm.sh
- name: Ensure yq is available
run: |
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
version: 3.51.1
- name: Install Helm
env:
HELM_VERSION: v3.17.3
HELM_VERSION: v3.21.4
run: bash hack/install-helm.sh
- name: Install helm-unittest plugin
run: helm plugin install https://github.com/helm-unittest/helm-unittest --version v0.5.1
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ vars:
# renovate: datasource=github-releases depName=fe3dback/go-arch-lint
GO_ARCH_LINT_VERSION: v1.15.0
# renovate: datasource=github-releases depName=helm/helm
HELM_VERSION: v3.17.3
HELM_VERSION: v3.21.4
# renovate: datasource=github-releases depName=norwoodj/helm-docs
HELM_DOCS_VERSION: v1.14.2
HELM_DOCS_BIN: "{{.BIN_DIR}}/helm-docs"
Expand Down
4 changes: 2 additions & 2 deletions hack/install-helm.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env bash
# Install a pinned Helm 3 release with SHA256-verified tarball download.
# Checksums from https://get.helm.sh/helm-${VERSION}-${OS}-${ARCH}.tar.gz.sha256
# Usage: HELM_VERSION=v3.17.3 hack/install-helm.sh
# Usage: HELM_VERSION=v3.21.4 hack/install-helm.sh
set -euo pipefail

VERSION="${HELM_VERSION:-v3.17.3}"
VERSION="${HELM_VERSION:-v3.21.4}"

OS="$(uname -s | tr '[:upper:]' '[:lower:]')"
ARCH="$(uname -m)"
Expand Down
5 changes: 5 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@
{
"matchManagers": ["custom.regex"],
"groupName": "pinned build tools"
},
{
"description": "Keep every Helm pin on one version. The azure/setup-helm input in release.yaml is seen by the github-actions manager while the annotated HELM_VERSION pins are seen by the custom manager, so without this they land in different groups and drift apart -- which is exactly how release.yaml reached v3.21.4 while CI stayed on v3.17.3. Both resolve to depName helm/helm.",
"matchDepNames": ["helm/helm"],
"groupName": "helm"
}
]
}
Loading