chore: bump default kubectl version to 1.25.0

This commit is contained in:
Aarnav Tale
2022-09-04 11:54:45 -04:00
parent fe5edd2387
commit b88fbf4ad6
2 changed files with 2 additions and 2 deletions

View File

@@ -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:

View File

@@ -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