diff --git a/.github/workflows/terraform-apply.yml b/.github/workflows/terraform-apply.yml index 71ed9e5..062f6e8 100644 --- a/.github/workflows/terraform-apply.yml +++ b/.github/workflows/terraform-apply.yml @@ -23,21 +23,21 @@ jobs: uses: actions/checkout@v3 - name: Upload Configuration - uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.0.0 + uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.2.0 id: apply-upload with: workspace: ${{ env.TF_WORKSPACE }} directory: ${{ env.CONFIG_DIRECTORY }} - name: Create Apply Run - uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.0 + uses: hashicorp/tfc-workflows-github/actions/create-run@v1.2.0 id: apply-run with: workspace: ${{ env.TF_WORKSPACE }} configuration_version: ${{ steps.apply-upload.outputs.configuration_version_id }} - name: Apply - uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.0.0 + uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.2.0 if: fromJSON(steps.apply-run.outputs.payload).data.attributes.actions.IsConfirmable id: apply with: diff --git a/.github/workflows/terraform-plan.yml b/.github/workflows/terraform-plan.yml index 273baf4..3292de8 100644 --- a/.github/workflows/terraform-plan.yml +++ b/.github/workflows/terraform-plan.yml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@v3 - name: Upload Configuration - uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.0.0 + uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.2.0 id: plan-upload with: workspace: ${{ env.TF_WORKSPACE }} @@ -30,7 +30,7 @@ jobs: speculative: true - name: Create Plan Run - uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.0 + uses: hashicorp/tfc-workflows-github/actions/create-run@v1.2.0 id: plan-run with: workspace: ${{ env.TF_WORKSPACE }} @@ -38,7 +38,7 @@ jobs: plan_only: true - name: Get Plan Output - uses: hashicorp/tfc-workflows-github/actions/plan-output@v1.0.0 + uses: hashicorp/tfc-workflows-github/actions/plan-output@v1.2.0 id: plan-output with: plan: ${{ fromJSON(steps.plan-run.outputs.payload).data.relationships.plan.data.id }}