Skip to content
This repository was archived by the owner on Apr 9, 2023. It is now read-only.

Commit 0703d9b

Browse files
authored
Merge pull request #5 from stefanprodan/kubectl-0.17
Update tools
2 parents 683e1f4 + df13eca commit 0703d9b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ inputs:
99
description: 'command to run'
1010
required: true
1111
kubectl:
12-
description: 'kubectl version e.g. 1.16.2'
12+
description: 'kubectl version e.g. 1.17.0'
1313
kustomize:
14-
description: 'kustomize version e.g. 3.4.0'
14+
description: 'kustomize version e.g. 3.5.4'
1515
helm:
1616
description: 'helm version e.g. 2.16.1'
1717
helmv3:
18-
description: 'helm version e.g. 3.0.0'
18+
description: 'helm version e.g. 3.0.2'
1919
runs:
2020
using: 'docker'
2121
image: 'Dockerfile'

src/install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
set -o errexit
44

5-
KUBECTL=1.16.2
5+
KUBECTL=1.17.0
66
echo "downloading kubectl ${KUBECTL}"
77
curl -sL https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL}/bin/linux/amd64/kubectl \
88
-o /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl
99
kubectl version --client
1010

11-
KUSTOMIZE=3.4.0
11+
KUSTOMIZE=3.5.4
1212
echo "downloading kustomize ${KUSTOMIZE}"
1313
curl -sL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv${KUSTOMIZE}/kustomize_v${KUSTOMIZE}_linux_amd64.tar.gz | \
1414
tar xz && mv kustomize /usr/local/bin/kustomize
@@ -20,7 +20,7 @@ curl -sSL https://get.helm.sh/helm-v${HELM_V2}-linux-amd64.tar.gz | \
2020
tar xz && mv linux-amd64/helm /usr/local/bin/helm && rm -rf linux-amd64
2121
helm version --client
2222

23-
HELM_V3=3.0.0
23+
HELM_V3=3.0.2
2424
echo "downloading helm ${HELM_V3}"
2525
curl -sSL https://get.helm.sh/helm-v${HELM_V3}-linux-amd64.tar.gz | \
2626
tar xz && mv linux-amd64/helm /usr/local/bin/helmv3 && rm -rf linux-amd64
@@ -32,7 +32,7 @@ curl -sL https://github.com/instrumenta/kubeval/releases/download/${KUBEVAL}/kub
3232
tar xz && mv kubeval /usr/local/bin/kubeval
3333
kubeval --version
3434

35-
CONFTEST=0.15.0
35+
CONFTEST=0.16.0
3636
echo "downloading conftest ${CONFTEST}"
3737
curl -sL https://github.com/instrumenta/conftest/releases/download/v${CONFTEST}/conftest_${CONFTEST}_Linux_x86_64.tar.gz | \
3838
tar xz && mv conftest /usr/local/bin/conftest

0 commit comments

Comments
 (0)