From c8db57812bb1e21b37b16ad42cf3e577c3ee12dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20N=C3=A4gele?= Date: Thu, 20 May 2021 16:01:43 +0200 Subject: [PATCH] Update tool dependencies (#336) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Reinhard Nägele --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/release.yaml | 2 +- Dockerfile | 8 ++++---- build.sh | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 859141c8..628e54be 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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: | diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 254e50f7..2ed913e2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 diff --git a/Dockerfile b/Dockerfile index b0dae593..d6fedd04 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" && \ diff --git a/build.sh b/build.sh index fad94f7e..b0259888 100755 --- a/build.sh +++ b/build.sh @@ -72,7 +72,7 @@ main() { pushd "$SCRIPT_DIR" > /dev/null - go test ./... + go test -race ./... goreleaser "${goreleaser_args[@]}" popd > /dev/null