-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update aws sdk #22
Update aws sdk #22
Conversation
Signed-off-by: Fabian Martinez <46371672+famarting@users.noreply.github.com>
Signed-off-by: Fabian Martinez <46371672+famarting@users.noreply.github.com>
cc @agarwal1510 |
@@ -16,7 +16,7 @@ import ( | |||
"time" | |||
|
|||
"github.com/aws/aws-sdk-go-v2/aws" | |||
"github.com/aws/aws-sdk-go-v2/aws/signer/v4" | |||
v4 "github.com/aws/aws-sdk-go-v2/aws/signer/v4" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this v4 here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
linter added it
@famarting Go tests are failing with error: |
Signed-off-by: Fabian Martinez <46371672+famarting@users.noreply.github.com>
can you trigger CI again @agarwal1510 |
Ping @agarwal1510 |
Signed-off-by: Fabian Martinez <46371672+famarting@users.noreply.github.com>
@agarwal1510 can you trigger CI again? I had to update the supported go versions following https://github.com/aws/aws-sdk-go-v2/blob/main/.github/workflows/go.yml |
@@ -16,7 +16,7 @@ jobs: | |||
strategy: | |||
matrix: | |||
os: [ubuntu-latest, macos-latest, windows-latest] | |||
go-version: [1.19, "1.20"] | |||
go-version: ["1.21", "1.22", "1.23"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We want to support Go 1.20 which is also supported by AWS SDK. Please change the min to 1.20 in the PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was looking at outdated documentation, the library supports 1.21 as the minimum version. Approved.
Thank you |
#16