Skip to content

Commit 4e91ea5

Browse files
authored
Prepare release v1.1.1 (#29)
1 parent 3eea78a commit 4e91ea5

19 files changed

Lines changed: 78 additions & 29 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.1.1
4+
* Adds new `actions/workspace-output` action to fetch the latest state version output(s) for a given Terraform Cloud Workspace.
5+
* Bug fixes and enhancements from [tfc-workflows-tooling@v1.1.1](https://github.com/hashicorp/tfc-workflows-tooling/releases/tag/v1.1.1)
6+
37
# v1.0.4
48
* Fixes issue for missing `payload` output for `create-run`, `show-run`, `upload-configuration`, and `plan-output` actions from [tfc-workflows-tooling@v1.0.4](https://github.com/hashicorp/tfc-workflows-tooling/releases/tag/v1.0.4)
59

actions/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ For convenience, you are also able to specify these values within the GitHub Act
3838

3939

4040
```yml
41-
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.0.4
41+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.1.1
4242
# assign id attribute to reference in subsequent steps
4343
id: apply
4444
# if want to and handle automation if apply fails
@@ -80,19 +80,19 @@ jobs:
8080
runs-on: "ubuntu-latest"
8181
steps:
8282
- uses: actions/checkout@v3
83-
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.0.4
83+
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.1.1
8484
id: upload
8585
with:
8686
workspace: ${{ env.TF_WORKSPACE }}
8787
directory: ${{ env.TF_DIRECTORY }}
8888

89-
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.4
89+
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.1.1
9090
id: create-run
9191
with:
9292
workspace: ${{ env.TF_WORKSPACE }}
9393
configuration_version: ${{ steps.upload.outputs.configuration_version_id }}
9494

95-
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.0.4
95+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.1.1
9696
# assign id attribute to reference in subsequent steps
9797
id: apply
9898
with:

actions/apply-run/README.md

Lines changed: 2 additions & 2 deletions
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.0.4
20+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.1.1
2121
# assign id attribute to reference in subsequent steps
2222
id: apply
2323
# if want to and handle automation if apply fails
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
...
4444

45-
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.0.4
45+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.1.1
4646
# assign id attribute to reference in subsequent steps
4747
id: apply
4848
with:

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.0.4'
41+
image: 'docker://hashicorp/tfci:v1.1.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.0.4
14+
- uses: hashicorp/tfc-workflows-github/actions/cancel-run@v1.1.1
1515
id: cancel
1616
with:
1717
hostname: "my.tfe.instance.io" # if using Terraform Cloud 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.0.4'
39+
image: 'docker://hashicorp/tfci:v1.1.1'
4040
args:
4141
- tfci
4242
## global flags

actions/create-run/README.md

Lines changed: 3 additions & 3 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 Terraform Cloud 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.0.4
68+
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.1.1
6969
id: run
7070
with:
7171
workspace: "my-workspace"
@@ -84,13 +84,13 @@ 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.0.4
87+
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.1.1
8888
id: upload
8989
with:
9090
workspace: ${{ env.TF_WORKSPACE }}
9191
directory: ${{ env.TF_DIRECTORY }}
9292
93-
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.4
93+
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.1.1
9494
id: run
9595
with:
9696
workspace: ${{ env.TF_WORKSPACE }}

actions/create-run/action.yml

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

6363
runs:
6464
using: docker
65-
image: 'docker://hashicorp/tfci:v1.0.4'
65+
image: 'docker://hashicorp/tfci:v1.1.1'
6666
args:
6767
- tfci
6868
## 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.0.4
14+
- uses: hashicorp/tfc-workflows-github/actions/discard-run@v1.1.1
1515
id: discard
1616
with:
1717
hostname: "my.tfe.instance.io" # if using Terraform Cloud 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.0.4'
39+
image: 'docker://hashicorp/tfci:v1.1.1'
4040
args:
4141
- tfci
4242
## global flags

0 commit comments

Comments
 (0)