Skip to content

Commit

Permalink
Merge pull request #4183 from testcontainers/combined-pr-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
rnorth committed Jun 9, 2021
2 parents 5fcbd6d + 8347e4f commit 83b59e0
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2.1.0
with:
java-version: '1.8'
java-version: '8.0.292+10'
distribution: adopt-hotspot
- name: Cache Gradle Home files
uses: actions/cache@v2.1.6
continue-on-error: true
Expand All @@ -42,9 +43,10 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2.1.0
with:
java-version: '1.8'
java-version: '8.0.292+10'
distribution: adopt-hotspot
- name: Cache Gradle Home files
uses: actions/cache@v2.1.6
continue-on-error: true
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2.1.0
with:
java-version: '1.8'
java-version: '8.0.292+10'
distribution: adopt-hotspot
- name: Cache Gradle Home files
uses: actions/cache@v2.1.6
with:
Expand All @@ -40,9 +41,10 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2.1.0
with:
java-version: '1.8'
java-version: '8.0.292+10'
distribution: adopt-hotspot
- name: Cache Gradle Home files
uses: actions/cache@v2.1.6
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion examples/linked-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
}
dependencies {
compileOnly 'org.slf4j:slf4j-api:1.7.30'
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
implementation 'org.json:json:20210307'
testImplementation 'org.postgresql:postgresql:42.2.18'
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
Expand Down
2 changes: 1 addition & 1 deletion modules/elasticsearch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ description = "TestContainers :: elasticsearch"

dependencies {
compile project(':testcontainers')
testCompile "org.elasticsearch.client:elasticsearch-rest-client:7.12.1"
testCompile "org.elasticsearch.client:elasticsearch-rest-client:7.13.0"
testCompile "org.elasticsearch.client:transport:7.12.1"
testCompile 'org.rnorth.visible-assertions:visible-assertions:2.1.2'
}
2 changes: 1 addition & 1 deletion modules/kafka/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Testcontainers :: Kafka"
dependencies {
compile project(':testcontainers')

testCompile 'org.apache.kafka:kafka-clients:2.6.0'
testCompile 'org.apache.kafka:kafka-clients:2.8.0'
testCompile 'org.assertj:assertj-core:3.18.1'
testCompile 'com.google.guava:guava:23.0'
}
2 changes: 1 addition & 1 deletion modules/mariadb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
compile project(':jdbc')

compileOnly project(':r2dbc')
compileOnly 'org.mariadb:r2dbc-mariadb:1.0.0'
compileOnly 'org.mariadb:r2dbc-mariadb:1.0.1'

testCompile project(':jdbc-test')
testCompile 'org.mariadb.jdbc:mariadb-java-client:2.7.3'
Expand Down

0 comments on commit 83b59e0

Please sign in to comment.