From 5c7c1a2b1a7a01d043be216191a2a11e22321d46 Mon Sep 17 00:00:00 2001 From: team-tf-cdk <84392119+team-tf-cdk@users.noreply.github.com> Date: Tue, 2 Jul 2024 12:45:15 +0200 Subject: [PATCH] fix: change default CDKTF version to 0.20.8 (#192) This PR increases the default version of CDKTF used from `0.20.7` to version `0.20.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 46055f9..90fb782 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -23,7 +23,7 @@ const githubActionPinnedVersions = { const inputs = { cdktfVersion: { description: "The version of CDKTF to use", - default: "0.20.7", + default: "0.20.8", required: false, type: "string", }, diff --git a/README.md b/README.md index cce2568..c3962ff 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,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.7 | +| cdktfVersion | The version of CDKTF to use | `false` | 0.20.8 | | terraformVersion | The version of Terraform to use | `false` | 1.9.0 | | 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` | | @@ -60,7 +60,7 @@ jobs: - name: Run Terraform CDK uses: hashicorp/terraform-cdk-action@v5 with: - cdktfVersion: 0.20.7 + cdktfVersion: 0.20.8 terraformVersion: 1.9.0 mode: plan-only stackName: my-stack @@ -108,7 +108,7 @@ jobs: - name: Run Terraform CDK uses: hashicorp/terraform-cdk-action@v5 with: - cdktfVersion: 0.20.7 + cdktfVersion: 0.20.8 terraformVersion: 1.9.0 mode: auto-approve-apply stackName: my-stack @@ -152,7 +152,7 @@ jobs: - name: Test the synth uses: hashicorp/terraform-cdk-action@v5 with: - cdktfVersion: 0.20.7 + cdktfVersion: 0.20.8 terraformVersion: 1.9.0 mode: synth-only stackName: my-stack diff --git a/action.yml b/action.yml index c5c9d41..940b21f 100644 --- a/action.yml +++ b/action.yml @@ -12,7 +12,7 @@ branding: inputs: cdktfVersion: description: The version of CDKTF to use - default: 0.20.7 + default: 0.20.8 required: false terraformVersion: description: The version of Terraform to use