Skip to content

Commit 3e5e013

Browse files
authored
Merge pull request #5931 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents e2aeb68 + e08d7b6 commit 3e5e013

File tree

28 files changed

+42
-42
lines changed

28 files changed

+42
-42
lines changed

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
if: github.repository == 'testcontainers/testcontainers-java'
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: release-drafter/release-drafter@06a49bf28488e030d35ca2ac6dbf7f408a481779 # v5.19.0
21+
- uses: release-drafter/release-drafter@df69d584deac33d8569990cb6413f82447181076 # v5.19.0
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
sed -i "s/latest_version: .*/latest_version: ${GITHUB_REF##*/}/g" mkdocs.yml
2424
git diff
2525
- name: Create Pull Request
26-
uses: peter-evans/create-pull-request@18f90432bedd2afd6a825469ffd38aa24712a91d # v3.10.1
26+
uses: peter-evans/create-pull-request@671dc9c9e0c2d73f07fa45a3eb0220e1622f0c5f # v3.10.1
2727
with:
2828
title: Update docs version to ${GITHUB_REF##*/}
2929
body: |

core/build.gradle

Lines changed: 4 additions & 4 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:2.0.0'
64+
api 'org.slf4j:slf4j-api:2.0.3'
6565
compileOnly 'org.jetbrains:annotations:23.0.0'
6666
testCompileOnly 'org.jetbrains:annotations:23.0.0'
6767
api 'org.apache.commons:commons-compress:1.21'
@@ -80,18 +80,18 @@ dependencies {
8080

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

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

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

8787
shaded 'org.zeroturnaround:zt-exec:1.12'
8888

8989
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
9090
testImplementation 'redis.clients:jedis:4.2.3'
91-
testImplementation 'com.rabbitmq:amqp-client:5.15.0'
91+
testImplementation 'com.rabbitmq:amqp-client:5.16.0'
9292
testImplementation 'org.mongodb:mongo-java-driver:3.12.11'
9393

94-
testImplementation ('org.mockito:mockito-core:4.7.0') {
94+
testImplementation ('org.mockito:mockito-core:4.8.0') {
9595
exclude(module: 'hamcrest-core')
9696
}
9797
// Synthetic JAR used for MountableFileTest and DirectoryTarResourceTest

examples/cucumber/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ dependencies {
1111
implementation 'org.seleniumhq.selenium:selenium-firefox-driver:3.141.59'
1212
implementation 'org.seleniumhq.selenium:selenium-chrome-driver:3.141.59'
1313
testImplementation 'io.cucumber:cucumber-java:7.6.0'
14-
testImplementation 'io.cucumber:cucumber-junit:7.6.0'
14+
testImplementation 'io.cucumber:cucumber-junit:7.8.0'
1515
testImplementation 'org.testcontainers:selenium'
1616
}

examples/kafka-cluster/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
testCompileOnly "org.projectlombok:lombok:1.18.24"
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.24"
1212
testImplementation 'org.testcontainers:kafka'
13-
testImplementation 'org.apache.kafka:kafka-clients:3.2.1'
13+
testImplementation 'org.apache.kafka:kafka-clients:3.3.0'
1414
testImplementation 'org.assertj:assertj-core:3.23.1'
1515
testImplementation 'com.google.guava:guava:23.0'
1616
testImplementation 'ch.qos.logback:logback-classic:1.2.11'

examples/linked-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88
dependencies {
99
compileOnly 'org.slf4j:slf4j-api:2.0.0'
1010
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
11-
implementation 'org.json:json:20220320'
11+
implementation 'org.json:json:20220924'
1212
testImplementation 'org.postgresql:postgresql:42.5.0'
1313
testImplementation 'ch.qos.logback:logback-classic:1.2.11'
1414
testImplementation 'org.testcontainers:postgresql'

examples/selenium-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.7.3'
3+
id 'org.springframework.boot' version '2.7.4'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

examples/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
dependencies {
88
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
99
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.11.1"
10-
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8"
10+
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8.1"
1111
}
1212
}
1313

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id("org.springframework.boot") version "2.7.3"
2+
id("org.springframework.boot") version "2.7.4"
33
id("org.jetbrains.kotlin.jvm") version "1.7.10"
44
id("org.jetbrains.kotlin.plugin.spring") version "1.7.10"
55
}

examples/spring-boot/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.7.3'
3+
id 'org.springframework.boot' version '2.7.4'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

0 commit comments

Comments
 (0)