From 025e23f824a5f4dfb85606df7d860a64d06117df Mon Sep 17 00:00:00 2001 From: team-tf-cdk <84392119+team-tf-cdk@users.noreply.github.com> Date: Mon, 21 Oct 2024 09:46:38 +0200 Subject: [PATCH] fix: change default Terraform version to 1.9.8 (#218) This PR increases the default version of Terraform used from `1.9.5` to version `1.9.8`. 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 182a43b..258c33a 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -30,7 +30,7 @@ const inputs = { }, terraformVersion: { description: "The version of Terraform to use", - default: "1.9.5", + default: "1.9.8", required: false, type: "string", }, diff --git a/README.md b/README.md index 26993e9..547d937 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.9 | -| terraformVersion | The version of Terraform to use | `false` | 1.9.5 | +| terraformVersion | The version of Terraform to use | `false` | 1.9.8 | | 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@v5 with: cdktfVersion: 0.20.9 - terraformVersion: 1.9.5 + terraformVersion: 1.9.8 mode: plan-only stackName: my-stack terraformCloudToken: ${{ secrets.TF_API_TOKEN }} @@ -110,7 +110,7 @@ jobs: uses: hashicorp/terraform-cdk-action@v5 with: cdktfVersion: 0.20.9 - terraformVersion: 1.9.5 + terraformVersion: 1.9.8 mode: auto-approve-apply stackName: my-stack terraformCloudToken: ${{ secrets.TF_API_TOKEN }} @@ -154,7 +154,7 @@ jobs: uses: hashicorp/terraform-cdk-action@v5 with: cdktfVersion: 0.20.9 - terraformVersion: 1.9.5 + terraformVersion: 1.9.8 mode: synth-only stackName: my-stack ``` diff --git a/action.yml b/action.yml index ffa5a4d..45e3f35 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,7 @@ inputs: required: false terraformVersion: description: The version of Terraform to use - default: 1.9.5 + default: 1.9.8 required: false workingDirectory: description: The directory to use for the project