From 49ec8ab82c05c589eea8461fd4c07634aa749e41 Mon Sep 17 00:00:00 2001 From: team-tf-cdk <84392119+team-tf-cdk@users.noreply.github.com> Date: Mon, 15 Apr 2024 14:59:03 +0200 Subject: [PATCH] fix: change default CDKTF version to 0.20.7 (#175) This PR increases the default version of CDKTF used from `0.20.6` to version `0.20.7`. 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 fa2a9bd..646842a 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.6", + default: "0.20.7", required: false, type: "string", }, diff --git a/README.md b/README.md index f0f6a6f..1117804 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.6 | +| cdktfVersion | The version of CDKTF to use | `false` | 0.20.7 | | terraformVersion | The version of Terraform to use | `false` | 1.8.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@v4 with: - cdktfVersion: 0.20.6 + cdktfVersion: 0.20.7 terraformVersion: 1.8.0 mode: plan-only stackName: my-stack @@ -108,7 +108,7 @@ jobs: - name: Run Terraform CDK uses: hashicorp/terraform-cdk-action@v4 with: - cdktfVersion: 0.20.6 + cdktfVersion: 0.20.7 terraformVersion: 1.8.0 mode: auto-approve-apply stackName: my-stack @@ -152,7 +152,7 @@ jobs: - name: Test the synth uses: hashicorp/terraform-cdk-action@v4 with: - cdktfVersion: 0.20.6 + cdktfVersion: 0.20.7 terraformVersion: 1.8.0 mode: synth-only stackName: my-stack diff --git a/action.yml b/action.yml index 618e0e4..6ce9ea2 100644 --- a/action.yml +++ b/action.yml @@ -12,7 +12,7 @@ branding: inputs: cdktfVersion: description: The version of CDKTF to use - default: 0.20.6 + default: 0.20.7 required: false terraformVersion: description: The version of Terraform to use