From 4ca1df0a8bc137f4487d285be650bfe4cb9bf941 Mon Sep 17 00:00:00 2001 From: Peter Mescalchin Date: Sat, 17 Sep 2022 16:58:53 +1000 Subject: [PATCH 1/2] Reference `LICENSE` and `CODE_OF_CONDUCT.md` directly to avoid incorrect branch name in URL --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 136dd54c..501fa9ef 100644 --- a/README.md +++ b/README.md @@ -262,11 +262,11 @@ to `true`, the following outputs are available for subsequent steps that call th ## License -[Mozilla Public License v2.0](https://github.com/hashicorp/setup-terraform/blob/master/LICENSE) +[Mozilla Public License v2.0](LICENSE) ## Code of Conduct -[Code of Conduct](https://github.com/hashicorp/setup-terraform/blob/master/CODE_OF_CONDUCT.md) +[Code of Conduct](CODE_OF_CONDUCT.md) ## Experimental Status From cbb0d180c9164bde4f695f2a4a60be24e4dbe5e4 Mon Sep 17 00:00:00 2001 From: Peter Mescalchin Date: Sat, 17 Sep 2022 17:00:01 +1000 Subject: [PATCH 2/2] Update GitHub docs link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 501fa9ef..fe5cee0a 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The `hashicorp/setup-terraform` action is a JavaScript action that sets up Terra - Configuring the [Terraform CLI configuration file](https://www.terraform.io/docs/commands/cli-config.html) with a Terraform Cloud/Enterprise hostname and API token. - Installing a wrapper script to wrap subsequent calls of the `terraform` binary and expose its STDOUT, STDERR, and exit code as outputs named `stdout`, `stderr`, and `exitcode` respectively. (This can be optionally skipped if subsequent steps in the same job do not need to access the results of Terraform commands.) -After you've used the action, subsequent steps in the same job can run arbitrary Terraform commands using [the GitHub Actions `run` syntax](https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsrun). This allows most Terraform commands to work exactly like they do on your local command line. +After you've used the action, subsequent steps in the same job can run arbitrary Terraform commands using [the GitHub Actions `run` syntax](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun). This allows most Terraform commands to work exactly like they do on your local command line. ## Usage