Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade github provider to 4.4.0 #35

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,14 @@ Available targets:
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
| <a name="requirement_github"></a> [github](#requirement\_github) | 3.0.0 |
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 4.4.0 |
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 1.2 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_github"></a> [github](#provider\_github) | 3.0.0 |
| <a name="provider_github"></a> [github](#provider\_github) | >= 4.4.0 |

## Modules

Expand All @@ -156,7 +156,7 @@ Available targets:

| Name | Type |
|------|------|
| [github_repository_webhook.default](https://registry.terraform.io/providers/hashicorp/github/3.0.0/docs/resources/repository_webhook) | resource |
| [github_repository_webhook.default](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_webhook) | resource |

## Inputs

Expand Down
6 changes: 3 additions & 3 deletions docs/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
| <a name="requirement_github"></a> [github](#requirement\_github) | 3.0.0 |
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 4.4.0 |
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 1.2 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_github"></a> [github](#provider\_github) | 3.0.0 |
| <a name="provider_github"></a> [github](#provider\_github) | >= 4.4.0 |

## Modules

Expand All @@ -23,7 +23,7 @@

| Name | Type |
|------|------|
| [github_repository_webhook.default](https://registry.terraform.io/providers/hashicorp/github/3.0.0/docs/resources/repository_webhook) | resource |
| [github_repository_webhook.default](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_webhook) | resource |

## Inputs

Expand Down
6 changes: 2 additions & 4 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@ terraform {

required_providers {
github = {
source = "hashicorp/github"
# breaking changes both immediately before and after 3.0.0, pin exactly
# until ready to upgrade to integrations/github 4.2 or later
version = "3.0.0"
source = "integrations/github"
version = ">= 4.4.0"
}
local = {
source = "hashicorp/local"
Expand Down