1
0
mirror of https://github.com/helm/chart-testing.git synced 2026-02-05 18:45:18 +01:00

Update tool dependencies (#336)

Signed-off-by: Reinhard Nägele <unguiculus@gmail.com>
This commit is contained in:
Reinhard Nägele
2021-05-20 16:01:43 +02:00
committed by GitHub
parent 3a490fa0a6
commit c8db57812b
4 changed files with 8 additions and 8 deletions

View File

@@ -17,7 +17,7 @@ jobs:
fetch-depth: 0
- name: shellcheck
uses: ludeeus/action-shellcheck@1.0.0
uses: ludeeus/action-shellcheck@1.1.0
- name: Setup go
uses: actions/setup-go@v2
@@ -26,7 +26,7 @@ jobs:
- uses: azure/setup-helm@v1
with:
version: v3.4.0
version: v3.5.4
- name: Install tools
run: |

View File

@@ -17,7 +17,7 @@ jobs:
fetch-depth: 0
- name: shellcheck
uses: ludeeus/action-shellcheck@1.0.0
uses: ludeeus/action-shellcheck@1.1.0
- name: Setup go
uses: actions/setup-go@v2

View File

@@ -12,24 +12,24 @@ RUN apk --no-cache add \
pip install --upgrade pip==21.0.1
# Install a YAML Linter
ARG yamllint_version=1.26.0
ARG yamllint_version=1.26.1
LABEL yamllint_version=$yamllint_version
RUN pip install "yamllint==$yamllint_version"
# Install Yamale YAML schema validator
ARG yamale_version=3.0.4
ARG yamale_version=3.0.6
LABEL yamale_version=$yamale_version
RUN pip install "yamale==$yamale_version"
# Install kubectl
ARG kubectl_version=v1.20.2
ARG kubectl_version=v1.21.1
LABEL kubectl_version=$kubectl_version
RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$kubectl_version/bin/linux/amd64/kubectl" && \
chmod +x kubectl && \
mv kubectl /usr/local/bin/
# Install Helm
ARG helm_version=v3.5.1
ARG helm_version=v3.5.4
LABEL helm_version=$helm_version
RUN curl -LO "https://get.helm.sh/helm-$helm_version-linux-amd64.tar.gz" && \
mkdir -p "/usr/local/helm-$helm_version" && \

View File

@@ -72,7 +72,7 @@ main() {
pushd "$SCRIPT_DIR" > /dev/null
go test ./...
go test -race ./...
goreleaser "${goreleaser_args[@]}"
popd > /dev/null