chore: bump default version to 1.26

This commit is contained in:
Aarnav Tale
2023-01-06 12:25:02 -05:00
parent b88fbf4ad6
commit f6e83f6681
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.25.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.26.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.25.0
default: v1.26.0
base64-kube-config:
description: A base64 encoded reference to your authorization file (~/.kube/config)
required: true