diff --git a/.projenrc.ts b/.projenrc.ts index 252ddaf..0d6c8ac 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -30,7 +30,7 @@ const inputs = { }, terraformVersion: { description: "The version of Terraform to use", - default: "1.10.3", + default: "1.10.4", required: false, type: "string", }, diff --git a/README.md b/README.md index ce8ade4..38075c8 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,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.11 | -| terraformVersion | The version of Terraform to use | `false` | 1.10.3 | +| terraformVersion | The version of Terraform to use | `false` | 1.10.4 | | 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` | | | stackName | The stack to run / plan, only required when the mode is `plan-only` or `plan-and-apply` | `false` | | @@ -62,7 +62,7 @@ jobs: uses: hashicorp/terraform-cdk-action@v6 with: cdktfVersion: 0.20.11 - terraformVersion: 1.10.3 + terraformVersion: 1.10.4 mode: plan-only stackName: my-stack terraformCloudToken: ${{ secrets.TF_API_TOKEN }} @@ -110,7 +110,7 @@ jobs: uses: hashicorp/terraform-cdk-action@v6 with: cdktfVersion: 0.20.11 - terraformVersion: 1.10.3 + terraformVersion: 1.10.4 mode: auto-approve-apply stackName: my-stack terraformCloudToken: ${{ secrets.TF_API_TOKEN }} @@ -154,7 +154,7 @@ jobs: uses: hashicorp/terraform-cdk-action@v6 with: cdktfVersion: 0.20.11 - terraformVersion: 1.10.3 + terraformVersion: 1.10.4 mode: synth-only stackName: my-stack ``` diff --git a/action.yml b/action.yml index 2077757..bc2fc87 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,7 @@ inputs: required: false terraformVersion: description: The version of Terraform to use - default: 1.10.3 + default: 1.10.4 required: false workingDirectory: description: The directory to use for the project