From 3fcfa17f8dafb4313629a6712a30496e2faa7989 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 31 Oct 2022 18:40:38 +0100 Subject: [PATCH 1/3] upgrade kustomize 4.5.7 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3b794e6..6740046 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ A GitHub Action that setup Kubernetes tools (kubectl, kustomize, helm, kubeconfo |`fail-fast`|`false`|`true`| the action immediately fails when it fails to download (ie. due to a bad version) | |`setup-tools`|`false`|`""`|List of tool name to setup. By default, the action download and setup all supported Kubernetes tools. By specifying `setup-tools` you can choose which tools the action setup. Supported separator is `return` in multi-line string. Supported tools are `kubectl`, `kustomize`, `helm`, `helmv3`, `kubeval`, `conftest`, `yq`, `rancher`, `tilt`, `skaffold`, `kube-score`| |`kubectl`|`false`|`1.20.2`| kubectl version. kubectl vesion can be found [here](https://github.com/kubernetes/kubernetes/releases)| -|`kustomize`|`false`|`4.0.5`| kustomize version. kustomize vesion can be found [here](https://github.com/kubernetes-sigs/kustomize/releases)| +|`kustomize`|`false`|`4.5.7`| kustomize version. kustomize vesion can be found [here](https://github.com/kubernetes-sigs/kustomize/releases)| |`helm`|`false`|`3.6.3`| helm v3 version. helm vesion can be found [here](https://github.com/helm/helm/releases)| |`helmv2`|`false`|`2.17.0`| helm v2 version. helm v3 vesion can be found [here](https://github.com/helm/helm/releases)| |`kubeval`|`false`|`0.16.1`| kubeval version (must be **0.16.1+**). kubeval vesion can be found [here](https://github.com/instrumenta/kubeval/releases).
NOTE: this parameter is deprecating as `kubeval` is no longer maintained. A good replacement is [kubeconform](https://github.com/yannh/kubeconform). See also [this](https://github.com/instrumenta/kubeval) for more details.| From 66ee63b9981b38c1b13de221d038c92d111aa7dd Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 31 Oct 2022 18:41:29 +0100 Subject: [PATCH 2/3] Update action.yml --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 95f3754..89b3f58 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,7 @@ inputs: description: 'kubectl version' kustomize: required: false - default: '4.0.5' + default: '4.5.7' description: 'kustomize version' helm: required: false From e312685cc0ad1b43cbdcf4a583a10a8b9efbb3f3 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 31 Oct 2022 18:42:30 +0100 Subject: [PATCH 3/3] Update main.ts --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index b330e2c..f3dc36d 100644 --- a/src/main.ts +++ b/src/main.ts @@ -7,7 +7,7 @@ import * as toolCache from '@actions/tool-cache' import * as core from '@actions/core' const defaultKubectlVersion = '1.20.2' -const defaultKustomizeVersion = '4.0.5' +const defaultKustomizeVersion = '4.5.7' const defaultHelmVersion = '3.6.3' const defaultHelmv2Version = '2.17.0' const defaultKubevalVersion = '0.16.1'