Skip to content

Commit 1c9ab86

Browse files
authored
Merge pull request #5019 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 0b12ed2 + 24af573 commit 1c9ab86

File tree

28 files changed

+37
-37
lines changed

28 files changed

+37
-37
lines changed

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
if: github.repository == 'testcontainers/testcontainers-java'
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: release-drafter/release-drafter@fe52e97d262833ae07d05efaf1a239df3f1b5cd4 # v5.15.0
15+
- uses: release-drafter/release-drafter@436492609a0c75979acf131d57f61b5321571950 # v5.15.0
1616
env:
1717
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
@@ -17,7 +17,7 @@ jobs:
1717
sed -i "s/latest_version: .*/latest_version: ${GITHUB_REF##*/}/g" mkdocs.yml
1818
git diff
1919
- name: Create Pull Request
20-
uses: peter-evans/create-pull-request@dcd5fd746d53dd8de555c0f10bca6c35628be47a # v3.10.1
20+
uses: peter-evans/create-pull-request@f22a7da129c901513876a2380e2dae9f8e145330 # v3.10.1
2121
with:
2222
title: Update docs version to ${GITHUB_REF##*/}
2323
body: |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v2
1414

1515
- name: Update Gradle Wrapper
16-
uses: gradle-update/update-gradle-wrapper-action@f31ab392a9d75029f9fd0883d8d6745c0139a006 # v1.0.13
16+
uses: gradle-update/update-gradle-wrapper-action@5b865a8b4d09fdf6afaaa20397ba68455bb48f0d # v1.0.13
1717
with:
1818
repo-token: ${{ secrets.GITHUB_TOKEN }}
1919
labels: dependencies

core/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ configurations.all {
5353
}
5454

5555
dependencies {
56-
baseline 'org.testcontainers:testcontainers:1.16.2', {
56+
baseline 'org.testcontainers:testcontainers:1.16.3', {
5757
exclude group: "*", module: "*"
5858
}
5959

6060
api 'junit:junit:4.13.2'
61-
api 'org.slf4j:slf4j-api:1.7.32'
61+
api 'org.slf4j:slf4j-api:1.7.35'
6262
compileOnly 'org.jetbrains:annotations:23.0.0'
6363
testCompileClasspath 'org.jetbrains:annotations:23.0.0'
6464
api 'org.apache.commons:commons-compress:1.21'
@@ -90,10 +90,10 @@ dependencies {
9090

9191
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
9292
testImplementation 'redis.clients:jedis:4.0.1'
93-
testImplementation 'com.rabbitmq:amqp-client:5.14.0'
93+
testImplementation 'com.rabbitmq:amqp-client:5.14.1'
9494
testImplementation 'org.mongodb:mongo-java-driver:3.12.10'
9595

96-
testImplementation ('org.mockito:mockito-core:4.2.0') {
96+
testImplementation ('org.mockito:mockito-core:4.3.1') {
9797
exclude(module: 'hamcrest-core')
9898
}
9999
// 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
@@ -10,7 +10,7 @@ dependencies {
1010
implementation 'org.seleniumhq.selenium:selenium-remote-driver:3.141.59'
1111
implementation 'org.seleniumhq.selenium:selenium-firefox-driver:3.141.59'
1212
implementation 'org.seleniumhq.selenium:selenium-chrome-driver:3.141.59'
13-
testImplementation 'io.cucumber:cucumber-java:7.2.2'
13+
testImplementation 'io.cucumber:cucumber-java:7.2.3'
1414
testImplementation 'io.cucumber:cucumber-junit:7.2.2'
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.22"
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.22"
1212
testImplementation 'org.testcontainers:kafka'
13-
testImplementation 'org.apache.kafka:kafka-clients:3.0.0'
13+
testImplementation 'org.apache.kafka:kafka-clients:3.1.0'
1414
testImplementation 'org.assertj:assertj-core:3.22.0'
1515
testImplementation 'com.google.guava:guava:23.0'
1616
testImplementation 'ch.qos.logback:logback-classic:1.2.10'

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.3'
1111
implementation 'org.json:json:20211205'
12-
testImplementation 'org.postgresql:postgresql:42.3.1'
12+
testImplementation 'org.postgresql:postgresql:42.3.2'
1313
testImplementation 'ch.qos.logback:logback-classic:1.2.10'
1414
testImplementation 'org.testcontainers:postgresql'
1515
}

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

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

99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.32'
11-
implementation 'redis.clients:jedis:4.0.1'
11+
implementation 'redis.clients:jedis:4.1.1'
1212
implementation 'com.google.code.gson:gson:2.8.9'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/redis-backed-cache/build.gradle

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

99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.32'
11-
implementation 'redis.clients:jedis:4.0.1'
11+
implementation 'redis.clients:jedis:4.1.1'
1212
implementation 'com.google.code.gson:gson:2.8.9'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

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.6.2'
3+
id 'org.springframework.boot' version '2.6.3'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

0 commit comments

Comments
 (0)