diff --git a/.projenrc.ts b/.projenrc.ts index 258c33a..ded44f8 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -30,7 +30,7 @@ const inputs = { }, terraformVersion: { description: "The version of Terraform to use", - default: "1.9.8", + default: "1.10.2", required: false, type: "string", }, diff --git a/README.md b/README.md index 547d937..0b5ffeb 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.9 | -| terraformVersion | The version of Terraform to use | `false` | 1.9.8 | +| terraformVersion | The version of Terraform to use | `false` | 1.10.2 | | 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` | | @@ -59,10 +59,10 @@ jobs: run: yarn test - name: Run Terraform CDK - uses: hashicorp/terraform-cdk-action@v5 + uses: hashicorp/terraform-cdk-action@v6 with: cdktfVersion: 0.20.9 - terraformVersion: 1.9.8 + terraformVersion: 1.10.2 mode: plan-only stackName: my-stack terraformCloudToken: ${{ secrets.TF_API_TOKEN }} @@ -107,10 +107,10 @@ jobs: run: yarn test - name: Run Terraform CDK - uses: hashicorp/terraform-cdk-action@v5 + uses: hashicorp/terraform-cdk-action@v6 with: cdktfVersion: 0.20.9 - terraformVersion: 1.9.8 + terraformVersion: 1.10.2 mode: auto-approve-apply stackName: my-stack terraformCloudToken: ${{ secrets.TF_API_TOKEN }} @@ -151,10 +151,10 @@ jobs: run: yarn test - name: Test the synth - uses: hashicorp/terraform-cdk-action@v5 + uses: hashicorp/terraform-cdk-action@v6 with: cdktfVersion: 0.20.9 - terraformVersion: 1.9.8 + terraformVersion: 1.10.2 mode: synth-only stackName: my-stack ``` diff --git a/action.yml b/action.yml index 45e3f35..226ae0f 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,7 @@ inputs: required: false terraformVersion: description: The version of Terraform to use - default: 1.9.8 + default: 1.10.2 required: false workingDirectory: description: The directory to use for the project