diff --git a/.github/actions/rosa-create-cluster/README.md b/.github/actions/rosa-create-cluster/README.md index 7e40847..76df5e8 100644 --- a/.github/actions/rosa-create-cluster/README.md +++ b/.github/actions/rosa-create-cluster/README.md @@ -18,7 +18,7 @@ The kube context will be set on the created cluster. | `aws-region` |

AWS region where the ROSA cluster will be deployed

| `true` | `""` | | `rosa-cli-version` |

Version of the ROSA CLI to use

| `true` | `latest` | | `awscli-version` |

Version of the aws cli to use

| `true` | `2.15.52` | -| `openshift-version` |

Version of the OpenShift to install

| `true` | `4.17.5` | +| `openshift-version` |

Version of the OpenShift to install

| `true` | `4.17.6` | | `replicas` |

Number of replicas for the ROSA cluster

| `true` | `2` | | `s3-backend-bucket` |

Name of the S3 bucket to store Terraform state

| `true` | `""` | | `s3-bucket-region` |

Region of the bucket containing the resources states, if not set, will fallback on aws-region

| `false` | `""` | @@ -95,7 +95,7 @@ This action is a `composite` action. # Version of the OpenShift to install # # Required: true - # Default: 4.17.5 + # Default: 4.17.6 replicas: # Number of replicas for the ROSA cluster diff --git a/.github/actions/rosa-create-cluster/action.yml b/.github/actions/rosa-create-cluster/action.yml index 2d08c18..921b30c 100644 --- a/.github/actions/rosa-create-cluster/action.yml +++ b/.github/actions/rosa-create-cluster/action.yml @@ -36,7 +36,7 @@ inputs: description: Version of the OpenShift to install required: true # renovate: datasource=custom.rosa-camunda depName=red-hat-openshift versioning=semver - default: 4.17.5 + default: 4.17.6 replicas: description: Number of replicas for the ROSA cluster required: true diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index 9ce1c75..4312bcd 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -22,7 +22,7 @@ jobs: run: echo "TIMESTAMP=$(date +%s)" >> "$GITHUB_ENV" - name: Restore lychee cache - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 + uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4 with: path: .lycheecache key: cache-lychee-${{ env.TIMESTAMP }} diff --git a/.tool-versions b/.tool-versions index 55c3e66..fa24647 100644 --- a/.tool-versions +++ b/.tool-versions @@ -3,15 +3,15 @@ # check it with # diff <(sed '/^#/d; /^$/d' .tool-versions | sort) <(sed '/^#/d; /^$/d' .tool-versions) && echo ".tool-versions is sorted correctly" || echo ".tool-versions is not sorted correctly" -awscli 2.22.7 +awscli 2.22.12 -golang 1.23.3 +golang 1.23.4 just 1.37.0 pre-commit 4.0.1 -terraform 1.10.0 +terraform 1.10.1 terraform-docs 0.19.0 diff --git a/modules/rosa-hcp/README.md b/modules/rosa-hcp/README.md index 040d2ca..fcd08a4 100644 --- a/modules/rosa-hcp/README.md +++ b/modules/rosa-hcp/README.md @@ -27,7 +27,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.17.5"` | no | +| [openshift\_version](#input\_openshift\_version) | The version of ROSA to be deployed | `string` | `"4.17.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 e2b8e45..c300156 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=custom.rosa-camunda depName=red-hat-openshift versioning=semver - default = "4.17.5" + default = "4.17.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)."