Skip to content

Commit

Permalink
fix: change default CDKTF version to 0.20.3 (#141)
Browse files Browse the repository at this point in the history
This PR increases the default version of CDKTF used from `0.20.1` to
version `0.20.3`.
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 Feb 5, 2024
1 parent beebda8 commit dbb74b8
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.1",
default: "0.20.3",
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.1 |
| cdktfVersion | The version of CDKTF to use | `false` | 0.20.3 |
| terraformVersion | The version of Terraform to use | `false` | 1.7.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` | |
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Run Terraform CDK
uses: hashicorp/terraform-cdk-action@v3
with:
cdktfVersion: 0.20.1
cdktfVersion: 0.20.3
terraformVersion: 1.7.0
mode: plan-only
stackName: my-stack
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Run Terraform CDK
uses: hashicorp/terraform-cdk-action@v3
with:
cdktfVersion: 0.20.1
cdktfVersion: 0.20.3
terraformVersion: 1.7.0
mode: auto-approve-apply
stackName: my-stack
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Test the synth
uses: hashicorp/terraform-cdk-action@v3
with:
cdktfVersion: 0.20.1
cdktfVersion: 0.20.3
terraformVersion: 1.7.0
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 dbb74b8

Please sign in to comment.