Skip to content

Commit

Permalink
Bump version of required provider (minor)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukiffer committed Dec 21, 2022
1 parent 1cf12d2 commit 16b981a
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ This repository contains modules for deploying and managing GitHub repositories.
| Name | Version |
|---------------------------------------------------------------------------|------------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.12.26 |
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 5.7.0 |
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 5.12.0 |

## Providers

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

## Modules

Expand Down
6 changes: 3 additions & 3 deletions examples/repository/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
github = {
source = "integrations/github"
version = ">= 5.7.0"
version = ">= 5.12.0"
}
}
}
Expand All @@ -19,11 +19,11 @@ module "github_repository" {
name = "terratest-example-repository"
description = "An example repository used for testing Terraform-based deployments of a GitHub repository."

read_teams = [
pull_teams = [
"infrastructure-reviewers"
]

write_teams = [
push_teams = [
"devops-reviewers"
]

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ terraform {
required_providers {
github = {
source = "integrations/github"
version = ">= 5.7.0"
version = ">= 5.12.0"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions modules/repository-collaborator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
| Name | Version |
|---------------------------------------------------------------------------|------------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.12.26 |
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 5.7.0 |
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 5.12.0 |

## Providers

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

## Resources

Expand Down
2 changes: 1 addition & 1 deletion modules/repository-collaborator/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ terraform {
required_providers {
github = {
source = "integrations/github"
version = ">= 5.7.0"
version = ">= 5.12.0"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions modules/team-repository/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
| Name | Version |
|---------------------------------------------------------------------------|------------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.12.26 |
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 5.7.0 |
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 5.12.0 |

## Providers

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

## Resources

Expand Down
2 changes: 1 addition & 1 deletion modules/team-repository/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ terraform {
required_providers {
github = {
source = "integrations/github"
version = ">= 5.7.0"
version = ">= 5.12.0"
}
}
}
Expand Down

0 comments on commit 16b981a

Please sign in to comment.