Skip to content

Commit 02ae73d

Browse files
authored
Prepare for v1.0.2 (#11)
Updates changelog and bumps version pointers in associated files.
1 parent c198b4e commit 02ae73d

18 files changed

Lines changed: 30 additions & 27 deletions

File tree

CHANGELOG.md

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

3+
# v1.0.2
4+
* Bug fixes and enhancements from [tfc-workflows-tooling@v1.0.2](https://github.com/hashicorp/tfc-workflows-tooling/releases/tag/v1.0.2) version bump
5+
36
# v1.0.1
47
* Bug fixes and enhancements from [tfc-workflows-tooling@v1.0.1](https://github.com/hashicorp/tfc-workflows-tooling/releases/tag/v1.0.1) version bump
58

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.0
41+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.0.2
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.0
83+
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.0.2
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.0
89+
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.2
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.0
95+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.0.2
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.0
20+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.0.2
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.0
45+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.0.2
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.1'
41+
image: 'docker://hashicorp/tfci:v1.0.2'
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.0
14+
- uses: hashicorp/tfc-workflows-github/actions/cancel-run@v1.0.2
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.1'
39+
image: 'docker://hashicorp/tfci:v1.0.2'
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
@@ -60,7 +60,7 @@ Like with the other actions, you can specify hostname, token, and organization a
6060
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)
6161

6262
```yml
63-
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.0
63+
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.2
6464
id: run
6565
with:
6666
workspace: "my-workspace"
@@ -79,13 +79,13 @@ This specific example does not pass a configuraiton version id, so the run defau
7979
Creating a new run with recently uploaded configuration in a previous step
8080

8181
```yml
82-
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.0.0
82+
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.0.2
8383
id: upload
8484
with:
8585
workspace: ${{ env.TF_WORKSPACE }}
8686
directory: ${{ env.TF_DIRECTORY }}
8787
88-
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.0
88+
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.2
8989
id: run
9090
with:
9191
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.1'
65+
image: 'docker://hashicorp/tfci:v1.0.2'
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.0
14+
- uses: hashicorp/tfc-workflows-github/actions/discard-run@v1.0.2
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.1'
39+
image: 'docker://hashicorp/tfci:v1.0.2'
4040
args:
4141
- tfci
4242
## global flags

0 commit comments

Comments
 (0)