azure/setup-helm "chart version not found" / version resolution failure
setup-helm downloads the Helm CLI at a requested version. A nonexistent or malformed version pin produces a resolution error before any chart work begins.
What this error means
The setup-helm step fails with "could not find a release for the requested version".
github-actions
Error: could not find a release for the requested version v9.9.9
##[error]Error: could not find a release for the requested versionCommon causes
Nonexistent version pin
The version input names a Helm release that does not exist.
Malformed version string
A missing v prefix or wrong format does not match a published release.
How to fix it
Pin a real, published version
- Set version to a valid published Helm release (with the v prefix).
- Or use latest if a fixed pin is not required.
- Re-run the setup step.
.github/workflows/helm.yml
- uses: azure/setup-helm@v4
with:
version: v3.15.2How to prevent it
- Pin tool versions to released tags and review them on upgrade.
- Use the v-prefixed semver format the action expects.
Related guides
hashicorp/setup-terraform "401" from releases.hashicorp.comFix hashicorp/setup-terraform failing with a 401/network error while downloading the Terraform binary.
GitHub Actions azure/login "Az CLI Login failed"Fix azure/login "Error: Az CLI Login failed" - the service principal credentials or OIDC federation could not…
google-github-actions/upload-cloud-storage "bucket not found"Fix google-github-actions/upload-cloud-storage "bucket not found" caused by a wrong bucket name or missing ac…