From 43b8a97ee1ac3d7b35e35d0b279557db9fab2269 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 17 Sep 2024 16:12:42 -0600
Subject: [PATCH] build(deps): Bump hashicorp/tfc-workflows-github from 1.3.0
to 1.3.1 (#6118)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps
[hashicorp/tfc-workflows-github](https://github.com/hashicorp/tfc-workflows-github)
from 1.3.0 to 1.3.1.
Release notes
Sourced from hashicorp/tfc-workflows-github's
releases.
v1.3.1
Changelog
Sourced from hashicorp/tfc-workflows-github's
changelog.
v1.3.1
Commits
5bd1031
Merge pull request #2974
from hashicorp/release/v1.3.1
b2e72f3
fix: link in changelog entry
29b0596
prepare v1.3.1 release
3fa2830
Merge pull request #2950
from lucymhdavies/patch-1
485f382
Correct links to starter workflow templates
0207987
Merge pull request #1675
from hashicorp/mjyocca/disable-workflows
0c30278
chore: disable sync workflow
9d17c9c
Merge pull request #45
from hashicorp/TF-11430/rebrand
a396786
docs: update workflow file refs to HCP Terraform
b793b8f
chore: rename workflow filenames
- Additional commits viewable in compare
view
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
You can trigger a rebase of this PR by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
> **Note**
> Automatic rebases have been disabled on this pull request as it has
been open for over 30 days.
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
.github/workflows/_deploy_production.yml | 6 +++---
.github/workflows/_terraform.yml | 6 +++---
.github/workflows/cd.yml | 6 +++---
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/_deploy_production.yml b/.github/workflows/_deploy_production.yml
index a315c2080..a029caae9 100644
--- a/.github/workflows/_deploy_production.yml
+++ b/.github/workflows/_deploy_production.yml
@@ -125,7 +125,7 @@ jobs:
with:
ref: ${{ github.event.workflow_run.head_branch }}
- name: Upload Configuration
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.0
+ uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.1
id: apply-upload
with:
workspace: ${{ env.TF_WORKSPACE }}
@@ -133,7 +133,7 @@ jobs:
# https://app.terraform.io/app/firezone/workspaces/production/settings/general
directory: "./"
- name: Create Plan Run
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.3.0
+ uses: hashicorp/tfc-workflows-github/actions/create-run@v1.3.1
id: apply-run
env:
TF_VAR_image_tag:
@@ -143,7 +143,7 @@ jobs:
configuration_version:
${{ steps.apply-upload.outputs.configuration_version_id }}
- name: Apply
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.3.0
+ uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.3.1
if: fromJSON(steps.apply-run.outputs.payload).data.attributes.actions.IsConfirmable
id: apply
with:
diff --git a/.github/workflows/_terraform.yml b/.github/workflows/_terraform.yml
index ca1857e0d..05971f8be 100644
--- a/.github/workflows/_terraform.yml
+++ b/.github/workflows/_terraform.yml
@@ -40,7 +40,7 @@ jobs:
- 'terraform/**'
- if: steps.changes.outputs.terraform == 'true'
name: Upload Configuration
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.0
+ uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.1
id: plan-upload
with:
workspace: ${{ env.TF_WORKSPACE }}
@@ -50,7 +50,7 @@ jobs:
speculative: true
- if: steps.changes.outputs.terraform == 'true'
name: Create Plan Run
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.3.0
+ uses: hashicorp/tfc-workflows-github/actions/create-run@v1.3.1
id: plan-run
env:
TF_VAR_image_tag: '"${{ github.sha }}"'
@@ -61,7 +61,7 @@ jobs:
plan_only: true
- if: steps.changes.outputs.terraform == 'true'
name: Get Plan Output
- uses: hashicorp/tfc-workflows-github/actions/plan-output@v1.3.0
+ uses: hashicorp/tfc-workflows-github/actions/plan-output@v1.3.1
id: plan-output
with:
plan: ${{ fromJSON(steps.plan-run.outputs.payload).data.relationships.plan.data.id }}
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
index 97c1fdb84..257b34286 100644
--- a/.github/workflows/cd.yml
+++ b/.github/workflows/cd.yml
@@ -68,7 +68,7 @@ jobs:
with:
ref: ${{ github.event.workflow_run.head_branch }}
- name: Upload Configuration
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.0
+ uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.1
id: apply-upload
with:
workspace: ${{ env.TF_WORKSPACE }}
@@ -76,7 +76,7 @@ jobs:
# https://app.terraform.io/app/firezone/workspaces/staging/settings/general
directory: "./"
- name: Create Plan Run
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.3.0
+ uses: hashicorp/tfc-workflows-github/actions/create-run@v1.3.1
id: apply-run
env:
TF_VAR_image_tag: '"${{ github.sha }}"'
@@ -85,7 +85,7 @@ jobs:
configuration_version:
${{ steps.apply-upload.outputs.configuration_version_id }}
- name: Apply
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.3.0
+ uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.3.1
if: fromJSON(steps.apply-run.outputs.payload).data.attributes.actions.IsConfirmable
id: apply
with: