Install a specific version of helm binary on the runner.
Acceptable values are latest or any semantic version string like v3.5.0 Use this action in workflow to define which version of helm will be used. v2+ of this action only support Helm3.
- uses: step-security/setup-helm@v5
with:
version: '<version>' # default is latest (stable)
id: installAlternatively, the version can be read from a .tool-versions file (the format used by asdf and mise) via the version-file input:
- uses: step-security/setup-helm@v5
with:
version-file: .tool-versions
id: installThe action reads the version declared for the helm tool, for example:
helm 3.18.4
If both version and version-file are set, an explicitly requested version takes precedence and version-file is ignored (a warning is emitted). Because version defaults to latest, version-file is only ignored when you set version to a specific value other than latest; if version is left at its default, the version from version-file is used.
Note
If something goes wrong with fetching the latest version the action will use the hardcoded default version (currently v3.18.4). If you rely on a certain version higher than the default, you should explicitly use that version instead of latest.
The cached helm binary path is prepended to the PATH environment variable as well as stored in the helm-path output variable. Refer to the action metadata file for details about all the inputs https://github.com/step-security/setup-helm/blob/main/action.yml
