-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from robertomiranda/r/upgrade-go
Upgrade to Go 1.21
- Loading branch information
Showing
4 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
module github.com/statsbomb/prometheus-msk-discovery | ||
|
||
go 1.16 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2/config v1.1.4 | ||
github.com/aws/aws-sdk-go-v2/service/kafka v1.2.1 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2 v1.3.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.1.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.0.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.0.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.1.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.2.1 // indirect | ||
github.com/aws/smithy-go v1.3.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters