Skip to content

Commit a7737fd

Browse files
authored
Merge pull request #7519 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents ba9e3cc + 64501f3 commit a7737fd

File tree

18 files changed

+27
-27
lines changed

18 files changed

+27
-27
lines changed

.github/workflows/ci-docker-wormhole.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
in-docker_test:
3939
runs-on: ubuntu-22.04
4040
steps:
41-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
4242
- name: Build with Gradle
4343
run: |
4444
docker run -i --rm \

.github/workflows/ci-rootless.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
test:
3939
runs-on: ubuntu-22.04
4040
steps:
41-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
4242
- name: Setup rootless Docker
4343
uses: ScribeMD/[email protected]
4444
- name: Remove Docket root socket

.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
core:
4545
runs-on: ubuntu-22.04
4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848
- uses: ./.github/actions/setup-build
4949
- name: Build and test with Gradle
5050
run: |
@@ -54,7 +54,7 @@ jobs:
5454
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
5555
runs-on: ubuntu-22.04
5656
steps:
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5858
- uses: ./.github/actions/setup-build
5959
- name: Setup Testcontainers Cloud Client
6060
uses: atomicjar/testcontainers-cloud-setup-action@main
@@ -72,7 +72,7 @@ jobs:
7272
outputs:
7373
matrix: ${{ steps.set-matrix.outputs.matrix }}
7474
steps:
75-
- uses: actions/checkout@v3
75+
- uses: actions/checkout@v4
7676
- uses: ./.github/actions/setup-java
7777
- name: Setup Gradle Build Action
7878
uses: gradle/gradle-build-action@v2
@@ -92,7 +92,7 @@ jobs:
9292
matrix: ${{ fromJson(needs.find_gradle_jobs.outputs.matrix) }}
9393
runs-on: ubuntu-22.04
9494
steps:
95-
- uses: actions/checkout@v3
95+
- uses: actions/checkout@v4
9696
- uses: ./.github/actions/setup-build
9797
- name: Build and test with Gradle (${{matrix.gradle_args}})
9898
run: |
@@ -104,7 +104,7 @@ jobs:
104104
outputs:
105105
matrix: ${{ steps.set-matrix.outputs.matrix }}
106106
steps:
107-
- uses: actions/checkout@v3
107+
- uses: actions/checkout@v4
108108
- uses: ./.github/actions/setup-java
109109
- name: Setup Gradle Build Action
110110
uses: gradle/gradle-build-action@v2
@@ -125,7 +125,7 @@ jobs:
125125
matrix: ${{ fromJson(needs.find_examples_jobs.outputs.matrix) }}
126126
runs-on: ubuntu-22.04
127127
steps:
128-
- uses: actions/checkout@v3
128+
- uses: actions/checkout@v4
129129
- uses: ./.github/actions/setup-build
130130
- name: Build and test Examples with Gradle (${{matrix.gradle_args}})
131131
working-directory: ./examples/
@@ -138,7 +138,7 @@ jobs:
138138
outputs:
139139
matrix: ${{ steps.set-matrix.outputs.matrix }}
140140
steps:
141-
- uses: actions/checkout@v3
141+
- uses: actions/checkout@v4
142142
- uses: ./.github/actions/setup-java
143143
- name: Setup Gradle Build Action
144144
uses: gradle/gradle-build-action@v2
@@ -158,7 +158,7 @@ jobs:
158158
matrix: ${{ fromJson(needs.find_docs_examples_jobs.outputs.matrix) }}
159159
runs-on: ubuntu-22.04
160160
steps:
161-
- uses: actions/checkout@v3
161+
- uses: actions/checkout@v4
162162
- uses: ./.github/actions/setup-build
163163
- name: Build and test with Gradle (${{matrix.gradle_args}})
164164
run: |

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
release:
1616
runs-on: ubuntu-20.04
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- uses: ./.github/actions/setup-java
2020
- name: Clear existing docker image cache
2121
run: docker image prune -af

.github/workflows/update-docs-version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository == 'testcontainers/testcontainers-java'
1616
runs-on: ubuntu-20.04
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
ref: main
2121
- name: Update latest_version property in mkdocs.yml

.github/workflows/update-gradle-wrapper.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
- name: Update Gradle Wrapper
2222
uses: gradle-update/update-gradle-wrapper-action@0407394b9d173dfc9cf5695f9f560fef6d61a5fe # v1.0.13

.github/workflows/update-testcontainers-version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository == 'testcontainers/testcontainers-java'
1616
runs-on: ubuntu-20.04
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
ref: main
2121
- name: Update testcontainers.version property in gradle.properties

core/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ dependencies {
105105

106106
testImplementation 'com.google.cloud.tools:jib-core:0.23.0'
107107
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
108-
testImplementation 'redis.clients:jedis:4.4.3'
108+
testImplementation 'redis.clients:jedis:5.0.0'
109109
testImplementation 'com.rabbitmq:amqp-client:5.18.0'
110110
testImplementation 'org.mongodb:mongo-java-driver:3.12.14'
111111

examples/linked-container/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88
dependencies {
99
compileOnly 'org.slf4j:slf4j-api:1.7.36'
1010
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
11-
implementation 'org.json:json:20230227'
11+
implementation 'org.json:json:20230618'
1212
testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.11'
1414
testImplementation 'org.testcontainers:postgresql'

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.36'
11-
implementation 'redis.clients:jedis:4.4.3'
11+
implementation 'redis.clients:jedis:5.0.0'
1212
implementation 'com.google.code.gson:gson:2.10.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/redis-backed-cache/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.36'
11-
implementation 'redis.clients:jedis:4.4.3'
11+
implementation 'redis.clients:jedis:5.0.0'
1212
implementation 'com.google.code.gson:gson:2.10.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/singleton-container/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
dependencies {
1010

11-
implementation 'redis.clients:jedis:4.4.3'
11+
implementation 'redis.clients:jedis:5.0.0'
1212
implementation 'com.google.code.gson:gson:2.10.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
compileOnly 'org.slf4j:slf4j-api:1.7.36'

modules/dynalite/build.gradle

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

6-
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.543'
7-
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.543'
6+
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.545'
7+
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.545'
88
testImplementation 'org.assertj:assertj-core:3.24.2'
99
}

modules/elasticsearch/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ description = "Testcontainers :: elasticsearch"
33
dependencies {
44
api project(':testcontainers')
55
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.9.1"
6-
testImplementation "org.elasticsearch.client:transport:7.17.12"
6+
testImplementation "org.elasticsearch.client:transport:7.17.13"
77
testImplementation 'org.assertj:assertj-core:3.24.2'
88
}

modules/hivemq/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313

1414
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
1515
testImplementation(project(":junit-jupiter"))
16-
testImplementation("com.hivemq:hivemq-extension-sdk:4.18.0")
16+
testImplementation("com.hivemq:hivemq-extension-sdk:4.19.0")
1717
testImplementation("com.hivemq:hivemq-mqtt-client:1.3.2")
1818
testImplementation("org.apache.httpcomponents:httpclient:4.5.14")
1919
testImplementation("ch.qos.logback:logback-classic:1.4.11")

modules/junit-jupiter/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
testImplementation project(':mysql')
99
testImplementation project(':postgresql')
1010
testImplementation 'com.zaxxer:HikariCP:4.0.3'
11-
testImplementation 'redis.clients:jedis:4.4.3'
11+
testImplementation 'redis.clients:jedis:5.0.0'
1212
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1313
testImplementation ('org.mockito:mockito-core:4.11.0') {
1414
exclude(module: 'hamcrest-core')

modules/localstack/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ description = "Testcontainers :: Localstack"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation platform("com.amazonaws:aws-java-sdk-bom:1.12.543")
6+
testImplementation platform("com.amazonaws:aws-java-sdk-bom:1.12.545")
77
testImplementation 'com.amazonaws:aws-java-sdk-s3'
88
testImplementation 'com.amazonaws:aws-java-sdk-sqs'
99
testImplementation 'com.amazonaws:aws-java-sdk-logs'
10-
testImplementation 'software.amazon.awssdk:s3:2.20.139'
10+
testImplementation 'software.amazon.awssdk:s3:2.20.142'
1111
testImplementation 'org.assertj:assertj-core:3.24.2'
1212
}

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
dependencies {
88
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.14.1"
99
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.11.1"
10-
classpath "org.gradle.toolchains:foojay-resolver:0.6.0"
10+
classpath "org.gradle.toolchains:foojay-resolver:0.7.0"
1111
}
1212
}
1313

0 commit comments

Comments
 (0)