From aa4778724df2f4a44d602ca159cedffbdd40791f Mon Sep 17 00:00:00 2001 From: pguinard-public-com <87993268+pguinard-public-com@users.noreply.github.com> Date: Fri, 24 Feb 2023 10:24:22 -0700 Subject: [PATCH] Remove unused provider (#157) * Remove unused provider * Auto Format --------- Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com> Co-authored-by: Benjamin Smith --- .github/auto-release.yml | 1 - .github/renovate.json | 2 +- .github/workflows/validate-codeowners.yml | 1 + README.md | 1 - docs/terraform.md | 1 - versions.tf | 7 ------- 6 files changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/auto-release.yml b/.github/auto-release.yml index b45efb7..17cd39c 100644 --- a/.github/auto-release.yml +++ b/.github/auto-release.yml @@ -17,7 +17,6 @@ version-resolver: - 'bugfix' - 'bug' - 'hotfix' - - 'no-release' default: 'minor' categories: diff --git a/.github/renovate.json b/.github/renovate.json index ae4f0aa..a780298 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -4,9 +4,9 @@ ":preserveSemverRanges" ], "labels": ["auto-update"], + "dependencyDashboardAutoclose": true, "enabledManagers": ["terraform"], "terraform": { "ignorePaths": ["**/context.tf", "examples/**"] } } - diff --git a/.github/workflows/validate-codeowners.yml b/.github/workflows/validate-codeowners.yml index 70f829e..4b4a226 100644 --- a/.github/workflows/validate-codeowners.yml +++ b/.github/workflows/validate-codeowners.yml @@ -10,6 +10,7 @@ jobs: steps: - name: "Checkout source code at current commit" uses: actions/checkout@v2 + # Leave pinned at 0.7.1 until https://github.com/mszostok/codeowners-validator/issues/173 is resolved - uses: mszostok/codeowners-validator@v0.7.1 if: github.event.pull_request.head.repo.full_name == github.repository name: "Full check of CODEOWNERS" diff --git a/README.md b/README.md index 4c79e46..4851ebb 100644 --- a/README.md +++ b/README.md @@ -158,7 +158,6 @@ Available targets: | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 0.13.0 | -| [local](#requirement\_local) | >= 1.2 | ## Providers diff --git a/docs/terraform.md b/docs/terraform.md index a0f1059..bf90313 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -4,7 +4,6 @@ | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 0.13.0 | -| [local](#requirement\_local) | >= 1.2 | ## Providers diff --git a/versions.tf b/versions.tf index 0a440ee..450c502 100644 --- a/versions.tf +++ b/versions.tf @@ -1,10 +1,3 @@ terraform { required_version = ">= 0.13.0" - - required_providers { - local = { - source = "hashicorp/local" - version = ">= 1.2" - } - } }