diff --git a/README.md b/README.md index 267f30b..68efd8f 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ For more information, reference the GitHub Help Documentation for [Creating a wo For more information on inputs, see the [API Documentation](https://developer.github.com/v3/repos/releases/#input) -- `version`: The kind version to use (default: `v0.30.0`) +- `version`: The kind version to use (default: `v0.31.0`) - `config`: The path to the kind config file - `node_image`: The Docker image for the cluster nodes - `cluster_name`: The name of the cluster to create (default: `chart-testing`) - `wait`: The duration to wait for the control plane to become ready (default: `60s`) - `verbosity`: info log verbosity, higher value produces more output -- `kubectl_version`: The kubectl version to use (default: `v1.34.0`) +- `kubectl_version`: The kubectl version to use (default: `v1.35.0`) - `registry`: Whether to configure an insecure local registry (default: `false`) - `registry_image`: The registry image to use (default: `registry:2`) - `registry_name`: The registry name to use (default: `kind-registry`) diff --git a/action.yml b/action.yml index 938938e..cecb446 100644 --- a/action.yml +++ b/action.yml @@ -6,9 +6,9 @@ branding: icon: box inputs: version: - description: "The kind version to use (default: v0.30.0)" + description: "The kind version to use (default: v0.31.0)" required: false - default: "v0.30.0" + default: "v0.31.0" config: description: "The path to the kind config file" required: false @@ -31,9 +31,9 @@ inputs: default: "0" required: false kubectl_version: - description: "The kubectl version to use (default: v1.34.0)" + description: "The kubectl version to use (default: v1.35.0)" required: false - default: "v1.34.0" + default: "v1.35.0" registry: description: "Whether to configure an insecure local registry (default: false)" required: false diff --git a/kind.sh b/kind.sh index 402c5a9..8a17668 100755 --- a/kind.sh +++ b/kind.sh @@ -18,9 +18,9 @@ set -o errexit set -o nounset set -o pipefail -DEFAULT_KIND_VERSION=v0.30.0 +DEFAULT_KIND_VERSION=v0.31.0 DEFAULT_CLUSTER_NAME=chart-testing -DEFAULT_KUBECTL_VERSION=v1.34.0 +DEFAULT_KUBECTL_VERSION=v1.35.0 DEFAULT_CLOUD_PROVIDER_KIND_VERSION=0.6.0 show_help() {