Skip to content

Commit

Permalink
fix: change default CDKTF version to 0.20.5 (#166)
Browse files Browse the repository at this point in the history
This PR increases the default version of CDKTF used from `0.20.4` to
version `0.20.5`.
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 <[email protected]>
  • Loading branch information
team-tf-cdk authored Mar 25, 2024
1 parent 413c12f commit 57287d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const githubActionPinnedVersions = {
const inputs = {
cdktfVersion: {
description: "The version of CDKTF to use",
default: "0.20.4",
default: "0.20.5",
required: false,
type: "string",
},
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4 |
| cdktfVersion | The version of CDKTF to use | `false` | 0.20.5 |
| terraformVersion | The version of Terraform to use | `false` | 1.7.5 |
| 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` | |
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Run Terraform CDK
uses: hashicorp/terraform-cdk-action@v3
with:
cdktfVersion: 0.20.4
cdktfVersion: 0.20.5
terraformVersion: 1.7.5
mode: plan-only
stackName: my-stack
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Run Terraform CDK
uses: hashicorp/terraform-cdk-action@v3
with:
cdktfVersion: 0.20.4
cdktfVersion: 0.20.5
terraformVersion: 1.7.5
mode: auto-approve-apply
stackName: my-stack
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
- name: Test the synth
uses: hashicorp/terraform-cdk-action@v3
with:
cdktfVersion: 0.20.4
cdktfVersion: 0.20.5
terraformVersion: 1.7.5
mode: synth-only
stackName: my-stack
Expand Down
2 changes: 1 addition & 1 deletion action.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 57287d5

Please sign in to comment.