Skip to content

Commit 9c09b43

Browse files
authored
Merge pull request #4269 from testcontainers/combined-pr-branch
2 parents c3429ac + 62ecc55 commit 9c09b43

File tree

25 files changed

+32
-32
lines changed

25 files changed

+32
-32
lines changed

.github/workflows/combine-prs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
# Steps represent a sequence of tasks that will be executed as part of the job
3232
steps:
33-
- uses: actions/github-script@v3
33+
- uses: actions/github-script@v4.0.2
3434
id: fetch-branch-names
3535
name: Fetch branch names
3636
with:
@@ -121,7 +121,7 @@ jobs:
121121
git pull origin $sourcebranches --no-edit
122122
git push origin $COMBINE_BRANCH_NAME
123123
# Creates a PR with the new combined branch
124-
- uses: actions/github-script@v3
124+
- uses: actions/github-script@v4.0.2
125125
name: Create Combined Pull Request
126126
with:
127127
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
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v2
1414

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

core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,11 @@ dependencies {
136136
}
137137

138138
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
139-
testImplementation 'redis.clients:jedis:3.6.0'
139+
testImplementation 'redis.clients:jedis:3.6.1'
140140
testImplementation 'com.rabbitmq:amqp-client:5.12.0'
141141
testImplementation 'org.mongodb:mongo-java-driver:3.12.7'
142142

143-
testImplementation ('org.mockito:mockito-core:3.10.0') {
143+
testImplementation ('org.mockito:mockito-core:3.11.2') {
144144
exclude(module: 'hamcrest-core')
145145
}
146146
// Synthetic JAR used for MountableFileTest and DirectoryTarResourceTest

examples/disque-job-queue/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
compileOnly "org.projectlombok:lombok:1.18.20"
1111
annotationProcessor "org.projectlombok:lombok:1.18.20"
1212
implementation 'biz.paluch.redis:spinach:0.3'
13-
implementation 'com.google.code.gson:gson:2.8.6'
13+
implementation 'com.google.code.gson:gson:2.8.7'
1414
implementation 'com.google.guava:guava:23.0'
1515
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
1616
testImplementation 'org.mockito:mockito-all:1.10.19'

examples/kafka-cluster/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.10"
1212
testImplementation 'org.testcontainers:kafka'
1313
testImplementation 'org.apache.kafka:kafka-clients:2.8.0'
14-
testImplementation 'org.assertj:assertj-core:3.19.0'
14+
testImplementation 'org.assertj:assertj-core:3.20.2'
1515
testImplementation 'com.google.guava:guava:23.0'
1616
testImplementation 'org.slf4j:slf4j-simple:1.7.30'
1717
}

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.30'
1010
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
1111
implementation 'org.json:json:20210307'
12-
testImplementation 'org.postgresql:postgresql:42.2.20'
12+
testImplementation 'org.postgresql:postgresql:42.2.22'
1313
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
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
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.30'
1111
implementation 'redis.clients:jedis:3.6.0'
12-
implementation 'com.google.code.gson:gson:2.8.6'
12+
implementation 'com.google.code.gson:gson:2.8.7'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'
1515
testImplementation 'ch.qos.logback:logback-classic:1.2.3'

examples/redis-backed-cache/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.30'
1111
implementation 'redis.clients:jedis:3.6.0'
12-
implementation 'com.google.code.gson:gson:2.8.6'
12+
implementation 'com.google.code.gson:gson:2.8.7'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'
1515
testImplementation 'junit:junit:4.13.2'

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

examples/singleton-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010

1111
implementation 'redis.clients:jedis:3.6.0'
12-
implementation 'com.google.code.gson:gson:2.8.6'
12+
implementation 'com.google.code.gson:gson:2.8.7'
1313
implementation 'com.google.guava:guava:23.0'
1414
compileOnly 'org.slf4j:slf4j-api:1.7.30'
1515

0 commit comments

Comments
 (0)