This repository was archived by the owner on Apr 9, 2023. It is now read-only.
File tree 2 files changed +7
-7
lines changed 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ inputs:
9
9
description : ' command to run'
10
10
required : true
11
11
kubectl :
12
- description : ' kubectl version e.g. 1.16.2 '
12
+ description : ' kubectl version e.g. 1.17.0 '
13
13
kustomize :
14
- description : ' kustomize version e.g. 3.4.0 '
14
+ description : ' kustomize version e.g. 3.5.4 '
15
15
helm :
16
16
description : ' helm version e.g. 2.16.1'
17
17
helmv3 :
18
- description : ' helm version e.g. 3.0.0 '
18
+ description : ' helm version e.g. 3.0.2 '
19
19
runs :
20
20
using : ' docker'
21
21
image : ' Dockerfile'
Original file line number Diff line number Diff line change 2
2
3
3
set -o errexit
4
4
5
- KUBECTL=1.16.2
5
+ KUBECTL=1.17.0
6
6
echo " downloading kubectl ${KUBECTL} "
7
7
curl -sL https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL} /bin/linux/amd64/kubectl \
8
8
-o /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl
9
9
kubectl version --client
10
10
11
- KUSTOMIZE=3.4.0
11
+ KUSTOMIZE=3.5.4
12
12
echo " downloading kustomize ${KUSTOMIZE} "
13
13
curl -sL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv${KUSTOMIZE} /kustomize_v${KUSTOMIZE} _linux_amd64.tar.gz | \
14
14
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 | \
20
20
tar xz && mv linux-amd64/helm /usr/local/bin/helm && rm -rf linux-amd64
21
21
helm version --client
22
22
23
- HELM_V3=3.0.0
23
+ HELM_V3=3.0.2
24
24
echo " downloading helm ${HELM_V3} "
25
25
curl -sSL https://get.helm.sh/helm-v${HELM_V3} -linux-amd64.tar.gz | \
26
26
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
32
32
tar xz && mv kubeval /usr/local/bin/kubeval
33
33
kubeval --version
34
34
35
- CONFTEST=0.15 .0
35
+ CONFTEST=0.16 .0
36
36
echo " downloading conftest ${CONFTEST} "
37
37
curl -sL https://github.com/instrumenta/conftest/releases/download/v${CONFTEST} /conftest_${CONFTEST} _Linux_x86_64.tar.gz | \
38
38
tar xz && mv conftest /usr/local/bin/conftest
You can’t perform that action at this time.
0 commit comments