From b88fbf4ad649a7cbc83b1894a349a765bb2f45b3 Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Sun, 4 Sep 2022 11:54:45 -0400 Subject: [PATCH] chore: bump default kubectl version to 1.25.0 --- README.md | 2 +- action.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1de4742..ce42da9 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ To use this action, add the following step to your GitHub Action workflow: Keep in mind that the action expects a base64 encoded string of your Kubernetes configuration. The simplest way to do that is to run `cat $HOME/.kube/config | base64` and save that output as an action secret. -It's also possible to specify the version of the [kubectl](https://kubernetes.io/docs/reference/kubectl/) CLI to use. The current default release used by this action is `v1.23.0`. +It's also possible to specify the version of the [kubectl](https://kubernetes.io/docs/reference/kubectl/) CLI to use. The current default release used by this action is `v1.25.0`. ```yaml - uses: tale/kubectl-action@v1 with: diff --git a/action.yaml b/action.yaml index ffe743a..b218d8a 100644 --- a/action.yaml +++ b/action.yaml @@ -8,7 +8,7 @@ inputs: kubectl-version: description: Version of the kubectl CLI to use required: false - default: v1.23.0 + default: v1.25.0 base64-kube-config: description: A base64 encoded reference to your authorization file (~/.kube/config) required: true