Skip to content

Commit

Permalink
Merge pull request #127 from ekristen/renovate/github.com-ekristen-li…
Browse files Browse the repository at this point in the history
…bnuke-0.x

fix(deps): update module github.com/ekristen/libnuke to v0.15.0
  • Loading branch information
ekristen authored Jun 9, 2024
2 parents 02216b2 + 4e953a5 commit a5d802c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.21.6

require (
github.com/aws/aws-sdk-go v1.52.4
github.com/ekristen/libnuke v0.12.0
github.com/ekristen/libnuke v0.15.0
github.com/fatih/color v1.17.0
github.com/golang/mock v1.6.0
github.com/google/uuid v1.6.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ github.com/ekristen/libnuke v0.11.0 h1:SdSaAVnuAdGDqNlV82uAa+2FD9NeQyH96rIMduheh
github.com/ekristen/libnuke v0.11.0/go.mod h1:sBdA04l9IMMejQw5gO9k6o/a0GffSYhgZYaUSdRjIac=
github.com/ekristen/libnuke v0.12.0 h1:Dsk+ckT9sh9QZTLq5m8kOA1KFJGJxSv0TLnfe3YeL1o=
github.com/ekristen/libnuke v0.12.0/go.mod h1:sBdA04l9IMMejQw5gO9k6o/a0GffSYhgZYaUSdRjIac=
github.com/ekristen/libnuke v0.15.0 h1:YiQo8E32cZucz1UI14OPikSRl1UoyIp02rntrVeX30U=
github.com/ekristen/libnuke v0.15.0/go.mod h1:riI1tjCf6r+et/9oUBd1vQeFmn2Sn6UeFUR0nWkMeYw=
github.com/fatih/color v1.16.0 h1:zmkK9Ngbjj+K0yRhTVONQh1p/HknKYSlNT+vZCzyokM=
github.com/fatih/color v1.16.0/go.mod h1:fL2Sau1YI5c0pdGEVCbKQbLXB6edEj1ZgiY4NijnWvE=
github.com/fatih/color v1.17.0 h1:GlRw1BRJxkpqUCBKzKOw098ed57fEsKeNjpTe3cSjK4=
Expand Down
7 changes: 4 additions & 3 deletions pkg/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ func TestConfig_LoadExample(t *testing.T) {
Filters: filter.Filters{
"S3Bucket": {
filter.Filter{
Type: filter.Glob,
Value: "my-statebucket-*",
Type: filter.Glob,
Value: "my-statebucket-*",
Values: []string{},
},
},
},
Expand Down Expand Up @@ -279,7 +280,7 @@ func TestConfig_FilterMerge(t *testing.T) {
expect := filter.Filters{
"S3Bucket": []filter.Filter{
{
Type: "glob", Value: "my-statebucket-*",
Type: "glob", Value: "my-statebucket-*", Values: []string{},
},
},
"IAMRole": []filter.Filter{
Expand Down

0 comments on commit a5d802c

Please sign in to comment.