Skip to content

Commit

Permalink
Dependencies: Remove github.com/aws/aws-sdk-go as a direct dependency (
Browse files Browse the repository at this point in the history
…#408)

* Use aws-sdk-go-v2 in DownloadFFISSpreadsheet

* Use aws-sdk-go-v2 in PersistFFISData

* Remove github.com/aws/aws-sdk-go as direct dependency

* go mod tidy
  • Loading branch information
TylerHendrickson authored Oct 17, 2023
1 parent 88485f2 commit db08ae2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/DownloadFFISSpreadsheet/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/aws/aws-sdk-go-v2/service/s3"
"github.com/aws/aws-sdk-go-v2/service/s3/types"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/usdigitalresponse/grants-ingest/internal/log"
"github.com/usdigitalresponse/grants-ingest/pkg/grantsSchemas/ffis"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/PersistFFISData/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"fmt"

"github.com/aws/aws-lambda-go/events"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/dynamodb/types"
"github.com/aws/aws-sdk-go-v2/service/s3"
"github.com/aws/aws-sdk-go/aws"
"github.com/usdigitalresponse/grants-ingest/internal/log"
"github.com/usdigitalresponse/grants-ingest/pkg/grantsSchemas/ffis"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ require (
github.com/Netflix/go-env v0.0.0-20220526054621-78278af1949d
github.com/alecthomas/kong v0.8.1
github.com/aws/aws-lambda-go v1.41.0
github.com/aws/aws-sdk-go v1.45.27
github.com/aws/aws-sdk-go-v2 v1.21.2
github.com/aws/aws-sdk-go-v2/config v1.19.0
github.com/aws/aws-sdk-go-v2/credentials v1.13.43
Expand Down Expand Up @@ -43,6 +42,7 @@ require (
github.com/DataDog/sketches-go v1.4.2 // indirect
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/aws/aws-sdk-go v1.45.27 // indirect
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.14 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43 // indirect
Expand Down

0 comments on commit db08ae2

Please sign in to comment.