From 893629de415b1f52756c9e679c307fc524b6748d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 02:52:30 +0000 Subject: [PATCH] Bump hashicorp/tfc-workflows-github from 1.0.0 to 1.2.0 Bumps [hashicorp/tfc-workflows-github](https://github.com/hashicorp/tfc-workflows-github) from 1.0.0 to 1.2.0. - [Release notes](https://github.com/hashicorp/tfc-workflows-github/releases) - [Changelog](https://github.com/hashicorp/tfc-workflows-github/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/tfc-workflows-github/compare/v1.0.0...v1.2.0) --- updated-dependencies: - dependency-name: hashicorp/tfc-workflows-github dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/terraform-apply.yml | 6 +++--- .github/workflows/terraform-plan.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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 }}