From 2c45f1ef6024126fe4fabe89d31aba17df496957 Mon Sep 17 00:00:00 2001 From: team-tf-cdk <84392119+team-tf-cdk@users.noreply.github.com> Date: Thu, 23 Jan 2025 01:42:13 +0100 Subject: [PATCH] fix: change default Terraform version to 1.10.5 (#256) This PR increases the default version of Terraform used from `1.10.4` to version `1.10.5`. This is not considered a breaking change because it's just a patch release that shouldn't have any backwards incompatibilities. Signed-off-by: team-tf-cdk --- .projenrc.ts | 2 +- README.md | 8 ++++---- action.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.projenrc.ts b/.projenrc.ts index 8480f8f..05c2900 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -30,7 +30,7 @@ const inputs = { }, terraformVersion: { description: "The version of Terraform to use", - default: "1.10.4", + default: "1.10.5", required: false, type: "string", }, diff --git a/README.md b/README.md index 38075c8..9e3655d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The Terraform CDK GitHub Action allows you to run CDKTF as part of your CI/CD wo | parameter | description | required | default | | --- | --- | --- | --- | | cdktfVersion | The version of CDKTF to use | `false` | 0.20.11 | -| terraformVersion | The version of Terraform to use | `false` | 1.10.4 | +| terraformVersion | The version of Terraform to use | `false` | 1.10.5 | | workingDirectory | The directory to use for the project | `false` | ./ | | mode | What action to take: `synth-only` runs only the synthesis, `plan-only` only runs a plan, `auto-approve-apply` runs a plan and then performs an apply, `auto-approve-destroy` runs a plan and then performs a destroy | `true` | | | stackName | The stack to run / plan, only required when the mode is `plan-only` or `plan-and-apply` | `false` | | @@ -62,7 +62,7 @@ jobs: uses: hashicorp/terraform-cdk-action@v6 with: cdktfVersion: 0.20.11 - terraformVersion: 1.10.4 + terraformVersion: 1.10.5 mode: plan-only stackName: my-stack terraformCloudToken: ${{ secrets.TF_API_TOKEN }} @@ -110,7 +110,7 @@ jobs: uses: hashicorp/terraform-cdk-action@v6 with: cdktfVersion: 0.20.11 - terraformVersion: 1.10.4 + terraformVersion: 1.10.5 mode: auto-approve-apply stackName: my-stack terraformCloudToken: ${{ secrets.TF_API_TOKEN }} @@ -154,7 +154,7 @@ jobs: uses: hashicorp/terraform-cdk-action@v6 with: cdktfVersion: 0.20.11 - terraformVersion: 1.10.4 + terraformVersion: 1.10.5 mode: synth-only stackName: my-stack ``` diff --git a/action.yml b/action.yml index bc2fc87..da3ada0 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,7 @@ inputs: required: false terraformVersion: description: The version of Terraform to use - default: 1.10.4 + default: 1.10.5 required: false workingDirectory: description: The directory to use for the project