From ff37ce8adf668b1551693f6801a2702076705b20 Mon Sep 17 00:00:00 2001 From: team-tf-cdk <84392119+team-tf-cdk@users.noreply.github.com> Date: Mon, 6 Jan 2025 13:28:42 +0100 Subject: [PATCH] fix: change default CDKTF version to 0.20.11 (#230) This PR increases the default version of CDKTF used from `0.20.9` to version `0.20.11`. 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 18d0951..df60933 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -24,7 +24,7 @@ const githubActionPinnedVersions = { const inputs = { cdktfVersion: { description: "The version of CDKTF to use", - default: "0.20.9", + default: "0.20.11", required: false, type: "string", }, diff --git a/README.md b/README.md index 1349c5e..ce8ade4 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.9 | +| cdktfVersion | The version of CDKTF to use | `false` | 0.20.11 | | terraformVersion | The version of Terraform to use | `false` | 1.10.3 | | 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` | | @@ -61,7 +61,7 @@ jobs: - name: Run Terraform CDK uses: hashicorp/terraform-cdk-action@v6 with: - cdktfVersion: 0.20.9 + cdktfVersion: 0.20.11 terraformVersion: 1.10.3 mode: plan-only stackName: my-stack @@ -109,7 +109,7 @@ jobs: - name: Run Terraform CDK uses: hashicorp/terraform-cdk-action@v6 with: - cdktfVersion: 0.20.9 + cdktfVersion: 0.20.11 terraformVersion: 1.10.3 mode: auto-approve-apply stackName: my-stack @@ -153,7 +153,7 @@ jobs: - name: Test the synth uses: hashicorp/terraform-cdk-action@v6 with: - cdktfVersion: 0.20.9 + cdktfVersion: 0.20.11 terraformVersion: 1.10.3 mode: synth-only stackName: my-stack diff --git a/action.yml b/action.yml index b9217ce..2077757 100644 --- a/action.yml +++ b/action.yml @@ -12,7 +12,7 @@ branding: inputs: cdktfVersion: description: The version of CDKTF to use - default: 0.20.9 + default: 0.20.11 required: false terraformVersion: description: The version of Terraform to use