Skip to content

Commit

Permalink
chore: update LocalStack and testcontainers
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Feb 9, 2024
1 parent 8ea5d20 commit 03e257e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ dependencies {
testImplementation group: "io.kestra", name: "repository-memory", version: kestraVersion

// testcontainers
testImplementation "org.testcontainers:testcontainers:1.19.0"
testImplementation "org.testcontainers:junit-jupiter:1.19.0"
testImplementation "org.testcontainers:localstack:1.19.0"
testImplementation "org.testcontainers:testcontainers:1.19.5"
testImplementation "org.testcontainers:junit-jupiter:1.19.5"
testImplementation "org.testcontainers:localstack:1.19.5"
// Localstack module misses SDK v1 classes that are mandatory, see https://github.com/testcontainers/testcontainers-java/issues/1442#issuecomment-694342883
testImplementation 'com.amazonaws:aws-java-sdk-s3:1.12.520'
testImplementation 'com.amazonaws:aws-java-sdk-s3'
}

/**********************************************************************************************************************\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@MicronautTest
@Testcontainers
public class AbstractLocalStackTest {
public static String LOCALSTACK_VERSION = "localstack/localstack:1.4.0";
public static String LOCALSTACK_VERSION = "localstack/localstack:2.3.2";

protected static LocalStackContainer localstack;

Expand Down

0 comments on commit 03e257e

Please sign in to comment.