Skip to content

Commit

Permalink
Update tool dependencies (#336)
Browse files Browse the repository at this point in the history
Signed-off-by: Reinhard Nägele <[email protected]>
  • Loading branch information
unguiculus authored May 20, 2021
1 parent 3a490fa commit c8db578
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -26,7 +26,7 @@ jobs:

- uses: azure/setup-helm@v1
with:
version: v3.4.0
version: v3.5.4

- name: Install tools
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" && \
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ main() {

pushd "$SCRIPT_DIR" > /dev/null

go test ./...
go test -race ./...
goreleaser "${goreleaser_args[@]}"

popd > /dev/null
Expand Down

0 comments on commit c8db578

Please sign in to comment.