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