Skip to content

Commit 986b037

Browse files
authored
Merge pull request #6113 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 8fe5901 + 3643c0a commit 986b037

File tree

40 files changed

+52
-52
lines changed

40 files changed

+52
-52
lines changed

.github/workflows/ci-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
java-version: '8.0.302'
2626
distribution: temurin
2727
- name: Cache Gradle Home files
28-
uses: actions/[email protected].9
28+
uses: actions/[email protected].11
2929
continue-on-error: true
3030
with:
3131
path: ~/.gradle/caches
@@ -53,7 +53,7 @@ jobs:
5353
java-version: '8.0.302'
5454
distribution: temurin
5555
- name: Cache Gradle Home files
56-
uses: actions/[email protected].9
56+
uses: actions/[email protected].11
5757
continue-on-error: true
5858
with:
5959
path: ~/.gradle/caches

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
java-version: '8.0.302'
2626
distribution: temurin
2727
- name: Cache Gradle Home files
28-
uses: actions/[email protected].9
28+
uses: actions/[email protected].11
2929
with:
3030
path: ~/.gradle/caches
3131
key: ${{ runner.os }}-gradle-home-testmatrix-${{ hashFiles('**/*.gradle') }}
@@ -51,7 +51,7 @@ jobs:
5151
java-version: '8.0.302'
5252
distribution: temurin
5353
- name: Cache Gradle Home files
54-
uses: actions/[email protected].9
54+
uses: actions/[email protected].11
5555
continue-on-error: true
5656
with:
5757
path: ~/.gradle/caches

.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@df69d584deac33d8569990cb6413f82447181076 # v5.19.0
21+
- uses: release-drafter/release-drafter@6df64e4ba4842c203c604c1f45246c5863410adb # v5.19.0
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
repo-token: ${{ secrets.GITHUB_TOKEN }}
2424
labels: dependencies
2525

26-
- uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b # v1.0.3
26+
- uses: gradle/wrapper-validation-action@55e685c48d84285a5b0418cd094606e199cca3b6 # v1.0.3

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ subprojects {
125125
}
126126

127127
dependencies {
128-
testImplementation 'ch.qos.logback:logback-classic:1.3.3'
128+
testImplementation 'ch.qos.logback:logback-classic:1.3.4'
129129
}
130130

131131
checkstyle {

core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dependencies {
6464
api 'org.slf4j:slf4j-api:1.7.36'
6565
compileOnly 'org.jetbrains:annotations:23.0.0'
6666
testCompileOnly 'org.jetbrains:annotations:23.0.0'
67-
api 'org.apache.commons:commons-compress:1.21'
67+
api 'org.apache.commons:commons-compress:1.22'
6868
api ('org.rnorth.duct-tape:duct-tape:1.0.8') {
6969
exclude(group: 'org.jetbrains', module: 'annotations')
7070
}
@@ -91,7 +91,7 @@ dependencies {
9191
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.8.0') {
94+
testImplementation ('org.mockito:mockito-core:4.8.1') {
9595
exclude(module: 'hamcrest-core')
9696
}
9797
// Synthetic JAR used for MountableFileTest and DirectoryTarResourceTest

docs/examples/junit4/generic/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies {
66
testImplementation project(":selenium")
77
testImplementation project(":mysql")
88

9-
testImplementation 'mysql:mysql-connector-java:8.0.21'
9+
testImplementation 'mysql:mysql-connector-java:8.0.31'
1010
testImplementation "org.seleniumhq.selenium:selenium-api:3.141.59"
1111
testImplementation 'org.assertj:assertj-core:3.15.0'
1212
}

docs/examples/junit5/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies {
44
api "io.lettuce:lettuce-core:5.1.1.RELEASE"
55

66
testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.2"
7-
testImplementation "org.junit.jupiter:junit-jupiter-params:5.4.2"
7+
testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.1"
88
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.4.2"
99
testImplementation project(":testcontainers")
1010
testImplementation project(":junit-jupiter")

docs/examples/spock/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ dependencies {
77
api "io.lettuce:lettuce-core:5.2.0.RELEASE"
88
testImplementation 'org.spockframework:spock-core:1.2-groovy-2.5'
99
testImplementation project(":spock")
10-
testImplementation 'ch.qos.logback:logback-classic:1.3.3'
10+
testImplementation 'ch.qos.logback:logback-classic:1.3.4'
1111
}

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.8.0'
13+
testImplementation 'io.cucumber:cucumber-java:7.9.0'
1414
testImplementation 'io.cucumber:cucumber-junit:7.8.0'
1515
testImplementation 'org.testcontainers:selenium'
1616
testImplementation 'org.assertj:assertj-core:3.23.1'

0 commit comments

Comments
 (0)