avirajkhare00 commented on code in PR #3070:
URL: https://github.com/apache/iggy/pull/3070#discussion_r3067841442
##########
.github/actions/utils/setup-helm-tools/action.yml:
##########
@@ -51,17 +75,40 @@ runs:
exit 1
fi
- - name: Install Helm and optional kind
+ - name: Install Helm and optional kind/helm-docs
shell: bash
env:
HELM_VERSION: ${{ inputs.helm-version }}
HELM_CHECKSUM: ${{ inputs.helm-checksum }}
KIND_VERSION: ${{ inputs.kind-version }}
KIND_CHECKSUM: ${{ inputs.kind-checksum }}
+ HELM_DOCS_VERSION: ${{ inputs.helm-docs-version }}
+ HELM_DOCS_CHECKSUM: ${{ inputs.helm-docs-checksum }}
run: |
set -euo pipefail
args=()
if [[ "${{ inputs.install-kind }}" == "true" ]]; then
args+=(--install-kind)
fi
+ if [[ "${{ inputs.install-helm-docs }}" == "true" ]]; then
+ args+=(--install-helm-docs)
+ fi
scripts/ci/setup-helm-tools.sh "${args[@]}"
+
+ - name: Install yamllint
+ if: inputs.install-yamllint == 'true'
+ shell: bash
+ run: pip install yamllint
Review Comment:
I have pinned version, since we are installing via pip, sha256verification
is something i don't know how to do it. anyways pip always fetches from default
registry unless we change it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]