Skip to content

Commit

Permalink
fix: dependabot gomod groups (#182)
Browse files Browse the repository at this point in the history
- Ensure atlantis and terraform dependencies are excluded from the wildcard group
- Exclude terraform as v0.15.3 is the last version with public registry pkg

See Terraform [commit 718d4fd0](https://github.com/hashicorp/terraform/commits/v0.15.4/internal/registry)
  • Loading branch information
vincenthsh authored Sep 13, 2023
1 parent 466bdda commit 5ab29f4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,17 @@ updates:
terraform:
patterns:
- "github.com/hashicorp/*"
exclude-patterns:
# pin to 0.15.3 (last version with shared registry packages)
- "github.com/hashicorp/terraform/*"
gomod:
patterns:
- "*"
exclude-patterns:
- "github.com/runatlantis/*"
- "github.com/hashicorp/*"
# pin to 0.15.3 (last version with shared registry packages)
- "github.com/hashicorp/terraform/*"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down

0 comments on commit 5ab29f4

Please sign in to comment.