diff --git a/.github/actions/rosa-create-cluster/action.yml b/.github/actions/rosa-create-cluster/action.yml
index be27b26..f97fb97 100644
--- a/.github/actions/rosa-create-cluster/action.yml
+++ b/.github/actions/rosa-create-cluster/action.yml
@@ -35,7 +35,7 @@ inputs:
description: 'Version of the OpenShift to install'
required: true
# renovate: datasource=endoflife-date depName=red-hat-openshift versioning=semver
- default: "4.16.5"
+ default: "4.16.6"
replicas:
description: 'Number of replicas for the ROSA cluster'
required: true
diff --git a/modules/rosa-hcp/README.md b/modules/rosa-hcp/README.md
index 331616f..d6033c5 100644
--- a/modules/rosa-hcp/README.md
+++ b/modules/rosa-hcp/README.md
@@ -25,7 +25,7 @@
| [htpasswd\_username](#input\_htpasswd\_username) | htpasswd username | `string` | `"kubeadmin"` | no |
| [machine\_cidr\_block](#input\_machine\_cidr\_block) | value of the CIDR block to use for the machine | `string` | `"10.0.0.0/18"` | no |
| [offline\_access\_token](#input\_offline\_access\_token) | The Red Hat OCM API access token for your account | `string` | n/a | yes |
-| [openshift\_version](#input\_openshift\_version) | The version of ROSA to be deployed | `string` | `"4.16.5"` | no |
+| [openshift\_version](#input\_openshift\_version) | The version of ROSA to be deployed | `string` | `"4.16.6"` | no |
| [pod\_cidr\_block](#input\_pod\_cidr\_block) | value of the CIDR block to use for the pods | `string` | `"10.0.64.0/18"` | no |
| [replicas](#input\_replicas) | The number of computer nodes to create. Must be a minimum of 2 for a single-AZ cluster, 3 for multi-AZ. | `string` | `"2"` | no |
| [service\_cidr\_block](#input\_service\_cidr\_block) | value of the CIDR block to use for the services | `string` | `"10.0.128.0/18"` | no |
diff --git a/modules/rosa-hcp/vars.tf b/modules/rosa-hcp/vars.tf
index 9336db7..f65e23d 100644
--- a/modules/rosa-hcp/vars.tf
+++ b/modules/rosa-hcp/vars.tf
@@ -9,7 +9,7 @@ variable "openshift_version" {
type = string
description = "The version of ROSA to be deployed"
# renovate: datasource=endoflife-date depName=red-hat-openshift versioning=semver
- default = "4.16.5"
+ default = "4.16.6"
validation {
condition = can(regex("^[0-9]*[0-9]+.[0-9]*[0-9]+.[0-9]*[0-9]+$", var.openshift_version))
error_message = "openshift_version must be with structure .. (for example 4.13.6)."