Skip to content

Commit

Permalink
Update auth, dynamodb, eventbridge, firehose, ... to 2.25.26 (#599)
Browse files Browse the repository at this point in the history
* Update auth, dynamodb, eventbridge, firehose, ... to 2.25.26

* Make type more explicit for Scala 3 compilation

---------

Co-authored-by: scala-steward-asf[bot] <147768647+scala-steward-asf[bot]@users.noreply.github.com>
Co-authored-by: Arnout Engelen <[email protected]>
  • Loading branch information
scala-steward-asf[bot] and raboof committed Apr 7, 2024
1 parent 216e7fd commit 86d0dd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ object Dependencies {
val InfluxDBJavaVersion = "2.23"

val AvroVersion = "1.11.3"
val AwsSdk2Version = "2.25.21"
val AwsSdk2Version = "2.25.26"
val AwsSdk2SqsVersion = "2.20.162" // latest AwsSdk2Version causes us test issues with SQS
val AwsSpiPekkoHttpVersion = "0.1.1"
val NettyVersion = "4.1.108.Final"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ object S3Settings {
val aki = c.getString("aws.credentials.access-key-id")
val sak = c.getString("aws.credentials.secret-access-key")
val tokenPath = "aws.credentials.token"
val creds = if (c.hasPath(tokenPath)) {
val creds: AwsCredentials = if (c.hasPath(tokenPath)) {
AwsSessionCredentials.create(aki, sak, c.getString(tokenPath))
} else {
AwsBasicCredentials.create(aki, sak)
Expand Down

0 comments on commit 86d0dd2

Please sign in to comment.