Skip to content

Commit 47837f2

Browse files
authored
Merge pull request #5816 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents fc3d600 + a4581a6 commit 47837f2

File tree

19 files changed

+28
-28
lines changed

19 files changed

+28
-28
lines changed

.github/workflows/ci-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
java-version: '8.0.302'
2626
distribution: temurin
2727
- name: Cache Gradle Home files
28-
uses: actions/[email protected].7
28+
uses: actions/[email protected].8
2929
continue-on-error: true
3030
with:
3131
path: ~/.gradle/caches
@@ -53,7 +53,7 @@ jobs:
5353
java-version: '8.0.302'
5454
distribution: temurin
5555
- name: Cache Gradle Home files
56-
uses: actions/[email protected].7
56+
uses: actions/[email protected].8
5757
continue-on-error: true
5858
with:
5959
path: ~/.gradle/caches

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
java-version: '8.0.302'
3434
distribution: temurin
3535
- name: Cache Gradle Home files
36-
uses: actions/[email protected].7
36+
uses: actions/[email protected].8
3737
with:
3838
path: ~/.gradle/caches
3939
key: ${{ runner.os }}-gradle-home-testmatrix-${{ hashFiles('**/*.gradle') }}
@@ -59,7 +59,7 @@ jobs:
5959
java-version: '8.0.302'
6060
distribution: temurin
6161
- name: Cache Gradle Home files
62-
uses: actions/[email protected].7
62+
uses: actions/[email protected].8
6363
continue-on-error: true
6464
with:
6565
path: ~/.gradle/caches

core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ configurations.all {
6161

6262
dependencies {
6363
api 'junit:junit:4.13.2'
64-
api 'org.slf4j:slf4j-api:1.7.36'
64+
api 'org.slf4j:slf4j-api:2.0.0'
6565
compileOnly 'org.jetbrains:annotations:23.0.0'
6666
testCompileClasspath 'org.jetbrains:annotations:23.0.0'
6767
api 'org.apache.commons:commons-compress:1.21'
@@ -80,7 +80,7 @@ dependencies {
8080

8181
api 'com.github.docker-java:docker-java-transport-zerodep'
8282

83-
shaded "org.yaml:snakeyaml:1.30"
83+
shaded "org.yaml:snakeyaml:1.31"
8484

8585
shaded 'org.glassfish.main.external:trilead-ssh2-repackaged:4.1.2'
8686

examples/linked-container/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ repositories {
66
mavenCentral()
77
}
88
dependencies {
9-
compileOnly 'org.slf4j:slf4j-api:1.7.36'
9+
compileOnly 'org.slf4j:slf4j-api:2.0.0'
1010
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
1111
implementation 'org.json:json:20220320'
12-
testImplementation 'org.postgresql:postgresql:42.4.2'
12+
testImplementation 'org.postgresql:postgresql:42.5.0'
1313
testImplementation 'ch.qos.logback:logback-classic:1.2.11'
1414
testImplementation 'org.testcontainers:postgresql'
1515
testImplementation 'org.assertj:assertj-core:3.23.1'

examples/redis-backed-cache-testng/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
compileOnly 'org.slf4j:slf4j-api:1.7.36'
10+
compileOnly 'org.slf4j:slf4j-api:2.0.0'
1111
implementation 'redis.clients:jedis:4.2.3'
1212
implementation 'com.google.code.gson:gson:2.9.1'
1313
implementation 'com.google.guava:guava:23.0'

examples/redis-backed-cache/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
compileOnly 'org.slf4j:slf4j-api:1.7.36'
10+
compileOnly 'org.slf4j:slf4j-api:2.0.0'
1111
implementation 'redis.clients:jedis:4.2.3'
1212
implementation 'com.google.code.gson:gson:2.9.1'
1313
implementation 'com.google.guava:guava:23.0'

examples/singleton-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111
implementation 'redis.clients:jedis:4.2.3'
1212
implementation 'com.google.code.gson:gson:2.9.1'
1313
implementation 'com.google.guava:guava:23.0'
14-
compileOnly 'org.slf4j:slf4j-api:1.7.36'
14+
compileOnly 'org.slf4j:slf4j-api:2.0.0'
1515

1616
testImplementation 'ch.qos.logback:logback-classic:1.2.11'
1717
testImplementation 'org.testcontainers:testcontainers'

modules/azure/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ dependencies {
66
shaded 'com.squareup.okhttp3:okhttp:4.10.0'
77

88
testImplementation 'org.assertj:assertj-core:3.23.1'
9-
testImplementation 'com.azure:azure-cosmos:4.34.0'
9+
testImplementation 'com.azure:azure-cosmos:4.35.1'
1010
}

modules/cockroachdb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies {
44
api project(':jdbc')
55

66
testImplementation project(':jdbc-test')
7-
testImplementation 'org.postgresql:postgresql:42.4.2'
7+
testImplementation 'org.postgresql:postgresql:42.5.0'
88
testImplementation 'org.assertj:assertj-core:3.23.1'
99
}

modules/dynalite/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: Dynalite"
33
dependencies {
44
api project(':testcontainers')
55

6-
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.285'
7-
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.281'
6+
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.295'
7+
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.295'
88
testImplementation 'org.assertj:assertj-core:3.23.1'
99
}

0 commit comments

Comments
 (0)