Skip to content

Commit 17d4c9b

Browse files
authored
Release 2.0.0 (#181)
1 parent b432b56 commit 17d4c9b

File tree

4 files changed

+31
-12
lines changed

4 files changed

+31
-12
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# [2.0.0] (2022-04-18)
2+
3+
BREAKING CHANGES:
4+
5+
* Support Actions Runners v2.285.0 or later by upgrading to Nodejs v16 runtime by @chenrui333 in https://github.com/hashicorp/setup-terraform/pull/170
6+
7+
NOTES:
8+
9+
* docs: Update existing PR comments example by @tobiasbueschel in https://github.com/hashicorp/setup-terraform/pull/178
10+
* Update Terraform versions and usage in README examples by @ksatirli in https://github.com/hashicorp/setup-terraform/pull/176
11+
* Update grammar in README.md by @dustindortch in https://github.com/hashicorp/setup-terraform/pull/180
12+
13+
INTERNAL:
14+
15+
* Bump @actions/github from 5.0.0 to 5.0.1 by @dependabot in https://github.com/hashicorp/setup-terraform/pull/177
16+
* dependabot: track github-actions dependency changes by @chenrui333 in https://github.com/hashicorp/setup-terraform/pull/179
17+
118
# [1.4.0] (2022-04-04)
219

320
NOTES:
@@ -79,7 +96,9 @@ INTERNAL:
7996
- Initial release.
8097

8198
<!-- Links to tag comparisons -->
82-
[Unreleased]: https://github.com/hashicorp/setup-terraform/compare/v1.3.2...main
99+
[Unreleased]: https://github.com/hashicorp/setup-terraform/compare/v2.0.0...main
100+
[2.0.0]: https://github.com/hashicorp/setup-terraform/compare/v1.4.0...v2.0.0
101+
[1.4.0]: https://github.com/hashicorp/setup-terraform/compare/v1.3.2...v1.4.0
83102
[1.3.2]: https://github.com/hashicorp/setup-terraform/compare/v1.3.1...v1.3.2
84103
[1.3.1]: https://github.com/hashicorp/setup-terraform/compare/v1.3.0...v1.3.1
85104
[1.3.0]: https://github.com/hashicorp/setup-terraform/compare/v1.2.1...v1.3.0

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ The default configuration installs the latest version of Terraform CLI and insta
2121

2222
```yaml
2323
steps:
24-
- uses: hashicorp/setup-terraform@v1
24+
- uses: hashicorp/setup-terraform@v2
2525
```
2626
2727
A specific version of Terraform CLI can be installed.
2828
2929
```yaml
3030
steps:
31-
- uses: hashicorp/setup-terraform@v1
31+
- uses: hashicorp/setup-terraform@v2
3232
with:
3333
terraform_version: 1.1.7
3434
```
@@ -37,7 +37,7 @@ Credentials for Terraform Cloud ([app.terraform.io](https://app.terraform.io/))
3737
3838
```yaml
3939
steps:
40-
- uses: hashicorp/setup-terraform@v1
40+
- uses: hashicorp/setup-terraform@v2
4141
with:
4242
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
4343
```
@@ -46,7 +46,7 @@ Credentials for Terraform Enterprise (TFE) can be configured:
4646
4747
```yaml
4848
steps:
49-
- uses: hashicorp/setup-terraform@v1
49+
- uses: hashicorp/setup-terraform@v2
5050
with:
5151
cli_config_credentials_hostname: 'terraform.example.com'
5252
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
@@ -56,7 +56,7 @@ The wrapper script installation can be skipped by setting the `terraform_wrapper
5656

5757
```yaml
5858
steps:
59-
- uses: hashicorp/setup-terraform@v1
59+
- uses: hashicorp/setup-terraform@v2
6060
with:
6161
terraform_wrapper: false
6262
```
@@ -66,7 +66,7 @@ Subsequent steps can access outputs when the wrapper script is installed.
6666

6767
```yaml
6868
steps:
69-
- uses: hashicorp/setup-terraform@v1
69+
- uses: hashicorp/setup-terraform@v2
7070
7171
- run: terraform init
7272
@@ -86,7 +86,7 @@ defaults:
8686
working-directory: ${{ env.tf_actions_working_dir }}
8787
steps:
8888
- uses: actions/checkout@v2
89-
- uses: hashicorp/setup-terraform@v1
89+
- uses: hashicorp/setup-terraform@v2
9090
9191
- name: Terraform fmt
9292
id: fmt
@@ -152,7 +152,7 @@ defaults:
152152
working-directory: ${{ env.tf_actions_working_dir }}
153153
steps:
154154
- uses: actions/checkout@v2
155-
- uses: hashicorp/setup-terraform@v1
155+
- uses: hashicorp/setup-terraform@v2
156156

157157
- name: Terraform fmt
158158
id: fmt

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-terraform",
3-
"version": "1.4.0",
3+
"version": "2.0.0",
44
"description": "Setup Terraform CLI for GitHub Actions",
55
"license": "MPL-2.0",
66
"publisher": "hashicorp",

0 commit comments

Comments
 (0)