From 7830a5d8a089563a5a6efc1af7025d958209fb80 Mon Sep 17 00:00:00 2001 From: Scott Leggett Date: Mon, 14 Mar 2022 22:52:19 +0800 Subject: [PATCH] feat: bump default kind and kubectl versions Match latest kind release v0.12.0. Signed-off-by: Scott Leggett --- README.md | 4 ++-- action.yml | 4 ++-- kind.sh | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5760288..eee889a 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.11.1`) +- `version`: The kind version to use (default: `v0.12.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`) - `log_level`: The log level for kind -- `kubectl_version`: The kubectl version to use (default: v1.20.8) +- `kubectl_version`: The kubectl version to use (default: v1.23.4) ### Example Workflow diff --git a/action.yml b/action.yml index 1efedf5..182d5ce 100644 --- a/action.yml +++ b/action.yml @@ -6,7 +6,7 @@ branding: icon: box inputs: version: - description: "The kind version to use (default: v0.11.1)" + description: "The kind version to use (default: v0.12.0)" config: description: "The path to the kind config file" node_image: @@ -18,7 +18,7 @@ inputs: log_level: description: "The log level for kind" kubectl_version: - description: "The kubectl version to use (default: v1.20.8)" + description: "The kubectl version to use (default: v1.23.4)" runs: using: "node12" main: "main.js" diff --git a/kind.sh b/kind.sh index d525fc2..41db8b7 100755 --- a/kind.sh +++ b/kind.sh @@ -18,9 +18,9 @@ set -o errexit set -o nounset set -o pipefail -DEFAULT_KIND_VERSION=v0.11.1 +DEFAULT_KIND_VERSION=v0.12.0 DEFAULT_CLUSTER_NAME=chart-testing -DEFAULT_KUBECTL_VERSION=v1.20.8 +DEFAULT_KUBECTL_VERSION=v1.23.4 show_help() { cat << EOF