Skip to content

Commit 8e08d1b

Browse files
authored
Prepare v1.3.2 release (#2981)
* bump docker image release * bump references to latest release * bump templates to latest release * chore: update changelog
1 parent 2a0a556 commit 8e08d1b

19 files changed

Lines changed: 32 additions & 29 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.3.2
4+
* Bug fixes and enhancements from [tfc-workflows-tooling@v1.3.2](https://github.com/hashicorp/tfc-workflows-tooling/releases/tag/v1.3.2)
5+
36
# v1.3.1
47
* Bug fixes and enhancements from [tfc-workflows-tooling@v1.3.1](https://github.com/hashicorp/tfc-workflows-tooling/releases/tag/v1.3.1)
58
* 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)

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.3.0
41+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.3.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.3.0
83+
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.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.3.0
89+
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.3.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.3.0
95+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.3.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.3.1
20+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.3.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.3.0
45+
- uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.3.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.3.1'
41+
image: 'docker://hashicorp/tfci:v1.3.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.3.1
14+
- uses: hashicorp/tfc-workflows-github/actions/cancel-run@v1.3.2
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.1'
39+
image: 'docker://hashicorp/tfci:v1.3.2'
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.1
68+
- uses: hashicorp/tfc-workflows-github/actions/create-run@v1.3.2
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.1
87+
- uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.2
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.1'
77+
image: 'docker://hashicorp/tfci:v1.3.2'
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.1
14+
- uses: hashicorp/tfc-workflows-github/actions/discard-run@v1.3.2
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.1'
39+
image: 'docker://hashicorp/tfci:v1.3.2'
4040
args:
4141
- tfci
4242
## global flags

0 commit comments

Comments
 (0)