From c7a4eb3370fe454d66656479b6f225e99d85a6b0 Mon Sep 17 00:00:00 2001 From: Pascal Hofmann Date: Mon, 9 Sep 2024 20:30:24 +0200 Subject: [PATCH] Bump to v1.2.2 Signed-off-by: Pascal Hofmann --- README.md | 16 ++++++++-------- action.yml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 63264aa..34e8fb2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ branch. ## Version -`v1.2.1` (uses [terraform-docs] v0.18.0, which is supported and tested on Terraform +`v1.2.2` (uses [terraform-docs] v0.18.0, which is supported and tested on Terraform version 0.11+ and 0.12+ but may work for others.) ### Upgrade v0 to v1 @@ -42,7 +42,7 @@ jobs: ref: ${{ github.event.pull_request.head.ref }} - name: Render terraform docs inside the README.md and push changes back to PR branch - uses: terraform-docs/gh-actions@v1.2.1 + uses: terraform-docs/gh-actions@v1.2.2 with: working-dir: . output-file: README.md @@ -148,7 +148,7 @@ To enable you need to ensure a few things first: ```yaml - name: Generate TF Docs - uses: terraform-docs/gh-actions@v1.2.1 + uses: terraform-docs/gh-actions@v1.2.2 with: working-dir: . ``` @@ -157,7 +157,7 @@ To enable you need to ensure a few things first: ```yaml - name: Generate TF Docs - uses: terraform-docs/gh-actions@v1.2.1 + uses: terraform-docs/gh-actions@v1.2.2 with: working-dir: .,example1,example3/modules/test ``` @@ -166,7 +166,7 @@ To enable you need to ensure a few things first: ```yaml - name: Generate TF docs - uses: terraform-docs/gh-actions@v1.2.1 + uses: terraform-docs/gh-actions@v1.2.2 with: atlantis-file: atlantis.yaml ``` @@ -175,7 +175,7 @@ To enable you need to ensure a few things first: ```yaml - name: Generate TF docs - uses: terraform-docs/gh-actions@v1.2.1 + uses: terraform-docs/gh-actions@v1.2.2 with: find-dir: examples/ ``` @@ -184,13 +184,13 @@ To enable you need to ensure a few things first: ```yaml - name: Generate TF docs - uses: terraform-docs/gh-actions@v1.2.1 + uses: terraform-docs/gh-actions@v1.2.2 with: working-dir: examples/ recursive: true recursive-path: modules ``` -Complete examples can be found [here](https://github.com/terraform-docs/gh-actions/tree/v1.2.1/examples). +Complete examples can be found [here](https://github.com/terraform-docs/gh-actions/tree/v1.2.2/examples). [terraform-docs]: https://github.com/terraform-docs/terraform-docs diff --git a/action.yml b/action.yml index 0b0c06f..ecff4d1 100644 --- a/action.yml +++ b/action.yml @@ -89,7 +89,7 @@ outputs: runs: using: docker - image: "docker://quay.io/terraform-docs/gh-actions:1.2.1" + image: "docker://quay.io/terraform-docs/gh-actions:1.2.2" env: INPUT_WORKING_DIR: ${{ inputs.working-dir }} INPUT_ATLANTIS_FILE: ${{ inputs.atlantis-file }}