Skip to content

Commit 5bd1031

Browse files
authored
Merge pull request #2974 from hashicorp/release/v1.3.1
Prepare v1.3.1 release
2 parents 3fa2830 + b2e72f3 commit 5bd1031

17 files changed

Lines changed: 27 additions & 23 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# UNRELEASED
22

3+
# v1.3.1
4+
* Bug fixes and enhancements from [tfc-workflows-tooling@v1.3.1](https://github.com/hashicorp/tfc-workflows-tooling/releases/tag/v1.3.1)
5+
* Compiles for Linux regardless of current CPU architecture when using the provided Dockerfile by @ggambetti [hashicorp/tfc-workflows-tooling#113](https://github.com/hashicorp/tfc-workflows-tooling/pull/113)
6+
37
# v1.3.0
48
* Adds support for `target` input for `create-run` action by @trutled3 [#97](https://github.com/hashicorp/tfc-workflows-tooling/pull/97)
59
* Bug fixes and enhancements from [tfc-workflows-tooling@v1.3.0](https://github.com/hashicorp/tfc-workflows-tooling/releases/tag/v1.3.0)

actions/apply-run/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ See `./action.yml` file for all available inputs and outputs.
1717
## Example Usage
1818

1919
```yml
20-
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.3.0
20+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.3.1
2121
# assign id attribute to reference in subsequent steps
2222
id: apply
2323
# if want to and handle automation if apply fails

actions/apply-run/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ outputs:
3838

3939
runs:
4040
using: docker
41-
image: 'docker://hashicorp/tfci:v1.3.0'
41+
image: 'docker://hashicorp/tfci:v1.3.1'
4242
args:
4343
- tfci
4444
## global flags

actions/cancel-run/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ See `./action.yml` file for all available inputs and outputs.
1111
## Example Usage
1212

1313
```yml
14-
- uses: hashicorp/tfc-workflows-github/actions/cancel-run@v1.3.0
14+
- uses: hashicorp/tfc-workflows-github/actions/cancel-run@v1.3.1
1515
id: cancel
1616
with:
1717
hostname: "my.tfe.instance.io" # if using HCP Terraform Enterprise

actions/cancel-run/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ outputs:
3636

3737
runs:
3838
using: docker
39-
image: 'docker://hashicorp/tfci:v1.3.0'
39+
image: 'docker://hashicorp/tfci:v1.3.1'
4040
args:
4141
- tfci
4242
## global flags

actions/create-run/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Like with the other actions, you can specify hostname, token, and organization a
6565
This specific example does not pass a configuraiton version id, so the run defaults to the workspace's most recently used version. [Read more about create run behavior in the HCP Terraform API](https://developer.hashicorp.com/terraform/cloud-docs/api-docs/run#create-a-run)
6666

6767
```yml
68-
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.3.0
68+
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.3.1
6969
id: run
7070
with:
7171
workspace: "my-workspace"
@@ -84,7 +84,7 @@ This specific example does not pass a configuraiton version id, so the run defau
8484
Creating a new run with recently uploaded configuration in a previous step
8585

8686
```yml
87-
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.0
87+
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.1
8888
id: upload
8989
with:
9090
workspace: ${{ env.TF_WORKSPACE }}

actions/create-run/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ outputs:
7474

7575
runs:
7676
using: docker
77-
image: 'docker://hashicorp/tfci:v1.3.0'
77+
image: 'docker://hashicorp/tfci:v1.3.1'
7878
args:
7979
- tfci
8080
## global flags

actions/discard-run/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ See `./action.yml` file for all available inputs and outputs.
1111
## Example Usage
1212

1313
```yml
14-
- uses: hashicorp/tfc-workflows-github/actions/discard-run@v1.3.0
14+
- uses: hashicorp/tfc-workflows-github/actions/discard-run@v1.3.1
1515
id: discard
1616
with:
1717
hostname: "my.tfe.instance.io" # if using HCP Terraform Enterprise

actions/discard-run/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ outputs:
3636

3737
runs:
3838
using: docker
39-
image: 'docker://hashicorp/tfci:v1.3.0'
39+
image: 'docker://hashicorp/tfci:v1.3.1'
4040
args:
4141
- tfci
4242
## global flags

actions/plan-output/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ See `./action.yml` file for all available inputs and outputs.
99
## Example Usage
1010

1111
```yml
12-
- uses: hashicorp/tfc-workflows-github/actions/plan-output@v1.3.0
12+
- uses: hashicorp/tfc-workflows-github/actions/plan-output@v1.3.1
1313
id: plan-output
1414
with:
1515
plan: ${{ steps.run.outputs.plan_id }}

0 commit comments

Comments
 (0)