File tree Expand file tree Collapse file tree 5 files changed +38
-8
lines changed Expand file tree Collapse file tree 5 files changed +38
-8
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ # #############################
3+ # # Dependabot configuration ##
4+ # #############################
5+
6+ #
7+ # Documentation:
8+ # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates
9+ #
10+
11+ version : 2
12+ updates :
13+ # Maintain dependencies for GitHub Actions
14+ - package-ecosystem : " github-actions"
15+ directory : " /"
16+ schedule :
17+ interval : " daily"
18+ open-pull-requests-limit : 0
19+
20+ # Maintain dependencies for Terraform Providers
21+ - package-ecosystem : " terraform"
22+ directory : " /"
23+ schedule :
24+ interval : " daily"
25+ open-pull-requests-limit : 0
26+
27+ # Maintain dependencies for Golang
28+ - package-ecosystem : " gomod"
29+ directory : " /"
30+ schedule :
31+ interval : " daily"
32+ open-pull-requests-limit : 0
Original file line number Diff line number Diff line change 55
66...
77
8- ## How this PR fixes it
9-
10- ...
11-
128## Readiness Checklist
139
1410### Author/Contributor
Original file line number Diff line number Diff line change 11repos :
22 - repo : https://github.com/antonbabenko/pre-commit-terraform
3- rev : v1.76 .0
3+ rev : v1.80 .0
44 hooks :
55 - id : terraform_docs
66 - id : terraform_fmt
77 - id : terraform_validate
8+ args :
9+ - --hook-config=--retry-once-with-cleanup=true
810 exclude : ' ^[^/]+$'
911 - id : terraform_tflint
1012 exclude : ^examples/
1113
1214 - repo : https://github.com/pre-commit/pre-commit-hooks
13- rev : v4.3 .0
15+ rev : v4.4 .0
1416 hooks :
1517 - id : trailing-whitespace
1618 - id : end-of-file-fixer
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ No outputs.
7272
7373| Name | Version |
7474| ------| ---------|
75- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 4.4 |
75+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 4.4, < 5.0 |
7676
7777## Resources
7878
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
44 required_providers {
55 aws = {
66 source = " hashicorp/aws"
7- version = " >= 4.4"
7+ version = " >= 4.4, < 5.0 "
88 }
99 }
1010}
You can’t perform that action at this time.
0 commit comments