Skip to content

Commit be26e4c

Browse files
authored
Merge pull request #4561 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 3740f65 + ee6f02d commit be26e4c

File tree

14 files changed

+18
-18
lines changed

14 files changed

+18
-18
lines changed

.github/workflows/ci-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix: ${{ steps.set-matrix.outputs.matrix }}
1616
steps:
1717
- uses: actions/checkout@v2
18-
- uses: actions/[email protected].0
18+
- uses: actions/[email protected].1
1919
with:
2020
java-version: '8.0.302'
2121
distribution: temurin
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-18.04
4444
steps:
4545
- uses: actions/checkout@v2
46-
- uses: actions/[email protected].0
46+
- uses: actions/[email protected].1
4747
with:
4848
java-version: '8.0.302'
4949
distribution: temurin

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
matrix: ${{ steps.set-matrix.outputs.matrix }}
2424
steps:
2525
- uses: actions/checkout@v2
26-
- uses: actions/[email protected].0
26+
- uses: actions/[email protected].1
2727
with:
2828
java-version: '8.0.302'
2929
distribution: temurin
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-18.04
5050
steps:
5151
- uses: actions/checkout@v2
52-
- uses: actions/[email protected].0
52+
- uses: actions/[email protected].1
5353
with:
5454
java-version: '8.0.302'
5555
distribution: temurin

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-18.04
1414
steps:
1515
- uses: actions/checkout@v2
16-
- uses: actions/[email protected].0
16+
- uses: actions/[email protected].1
1717
with:
1818
java-version: '8.0.302'
1919
distribution: temurin

examples/kafka-cluster/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.10"
1212
testImplementation 'org.testcontainers:kafka'
1313
testImplementation 'org.apache.kafka:kafka-clients:3.0.0'
14-
testImplementation 'org.assertj:assertj-core:3.20.2'
14+
testImplementation 'org.assertj:assertj-core:3.21.0'
1515
testImplementation 'com.google.guava:guava:23.0'
1616
testImplementation 'ch.qos.logback:logback-classic:1.2.6'
1717
}

examples/linked-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
compileOnly 'org.slf4j:slf4j-api:1.7.32'
1010
implementation 'com.squareup.okhttp3:okhttp:4.9.2'
1111
implementation 'org.json:json:20210307'
12-
testImplementation 'org.postgresql:postgresql:42.2.23'
12+
testImplementation 'org.postgresql:postgresql:42.2.24'
1313
testImplementation 'ch.qos.logback:logback-classic:1.2.6'
1414
testImplementation 'org.testcontainers:postgresql'
1515
}

examples/solr-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
compileOnly "org.projectlombok:lombok:1.18.20"
1111
annotationProcessor "org.projectlombok:lombok:1.18.16"
1212

13-
implementation 'org.apache.solr:solr-solrj:8.9.0'
13+
implementation 'org.apache.solr:solr-solrj:8.10.0'
1414

1515
testImplementation 'org.testcontainers:testcontainers'
1616
testImplementation 'org.testcontainers:solr'

examples/spring-boot-kotlin-redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id("org.springframework.boot") version "2.5.5"
3-
id("org.jetbrains.kotlin.jvm") version "1.5.30"
3+
id("org.jetbrains.kotlin.jvm") version "1.5.31"
44
id("org.jetbrains.kotlin.plugin.spring") version "1.5.31"
55
}
66

modules/database-commons/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ description = "Testcontainers :: Database-Commons"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation 'org.assertj:assertj-core:3.20.2'
6+
testImplementation 'org.assertj:assertj-core:3.21.0'
77
}

modules/elasticsearch/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description = "TestContainers :: elasticsearch"
22

33
dependencies {
44
api project(':testcontainers')
5-
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:7.14.1"
5+
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:7.15.0"
66
testImplementation "org.elasticsearch.client:transport:7.15.0"
77
testImplementation 'org.rnorth.visible-assertions:visible-assertions:2.1.2'
88
}

modules/junit-jupiter/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description = "Testcontainers :: JUnit Jupiter Extension"
22

33
dependencies {
44
api project(':testcontainers')
5-
api 'org.junit.jupiter:junit-jupiter-api:5.7.2'
5+
api 'org.junit.jupiter:junit-jupiter-api:5.8.1'
66

77
testImplementation project(':mysql')
88
testImplementation project(':postgresql')
@@ -13,7 +13,7 @@ dependencies {
1313
exclude(module: 'hamcrest-core')
1414
}
1515
testImplementation 'org.assertj:assertj-core:3.21.0'
16-
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.2'
16+
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.1'
1717

1818
testRuntimeOnly 'org.postgresql:postgresql:42.2.24'
1919
testRuntimeOnly 'mysql:mysql-connector-java:8.0.26'

0 commit comments

Comments
 (0)