Skip to content

Commit 8bc0b26

Browse files
authored
Merge pull request #5367 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 98b60fb + eb9f540 commit 8bc0b26

File tree

32 files changed

+40
-40
lines changed

32 files changed

+40
-40
lines changed

.github/workflows/ci-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
java-version: '8.0.302'
2323
distribution: temurin
2424
- name: Cache Gradle Home files
25-
uses: actions/[email protected].1
25+
uses: actions/[email protected].2
2626
continue-on-error: true
2727
with:
2828
path: ~/.gradle/caches
@@ -50,7 +50,7 @@ jobs:
5050
java-version: '8.0.302'
5151
distribution: temurin
5252
- name: Cache Gradle Home files
53-
uses: actions/[email protected].1
53+
uses: actions/[email protected].2
5454
continue-on-error: true
5555
with:
5656
path: ~/.gradle/caches

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
java-version: '8.0.302'
3131
distribution: temurin
3232
- name: Cache Gradle Home files
33-
uses: actions/[email protected].1
33+
uses: actions/[email protected].2
3434
with:
3535
path: ~/.gradle/caches
3636
key: ${{ runner.os }}-gradle-home-testmatrix-${{ hashFiles('**/*.gradle') }}
@@ -56,7 +56,7 @@ jobs:
5656
java-version: '8.0.302'
5757
distribution: temurin
5858
- name: Cache Gradle Home files
59-
uses: actions/[email protected].1
59+
uses: actions/[email protected].2
6060
continue-on-error: true
6161
with:
6262
path: ~/.gradle/caches

.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@f1a7646cead32c950d90344a4fb5d4e926972a8f # v3.10.1
20+
uses: peter-evans/create-pull-request@bd72e1b7922d417764d27d30768117ad7da78a0e # v3.10.1
2121
with:
2222
title: Update docs version to ${GITHUB_REF##*/}
2323
body: |

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ dependencies {
8989
shaded 'org.zeroturnaround:zt-exec:1.12'
9090

9191
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
92-
testImplementation 'redis.clients:jedis:4.0.1'
92+
testImplementation 'redis.clients:jedis:4.2.2'
9393
testImplementation 'com.rabbitmq:amqp-client:5.14.2'
9494
testImplementation 'org.mongodb:mongo-java-driver:3.12.10'
9595

examples/disque-job-queue/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ repositories {
77
}
88

99
dependencies {
10-
compileOnly "org.projectlombok:lombok:1.18.22"
11-
annotationProcessor "org.projectlombok:lombok:1.18.20"
10+
compileOnly "org.projectlombok:lombok:1.18.24"
11+
annotationProcessor "org.projectlombok:lombok:1.18.24"
1212
implementation 'biz.paluch.redis:spinach:0.3'
1313
implementation 'com.google.code.gson:gson:2.8.9'
1414
implementation 'com.google.guava:guava:23.0'

examples/kafka-cluster/build.gradle

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

99
dependencies {
10-
testCompileOnly "org.projectlombok:lombok:1.18.22"
10+
testCompileOnly "org.projectlombok:lombok:1.18.24"
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.22"
1212
testImplementation 'org.testcontainers:kafka'
1313
testImplementation 'org.apache.kafka:kafka-clients:3.1.0'

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.2.1'
11+
implementation 'redis.clients:jedis:4.2.2'
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.2.1'
11+
implementation 'redis.clients:jedis:4.2.2'
1212
implementation 'com.google.code.gson:gson:2.8.9'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
9-
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.8.1"
9+
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.10"
1010
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.6.2"
1111
}
1212
}

examples/singleton-container/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

11-
implementation 'redis.clients:jedis:4.2.1'
11+
implementation 'redis.clients:jedis:4.2.2'
1212
implementation 'com.google.code.gson:gson:2.8.9'
1313
implementation 'com.google.guava:guava:23.0'
1414
compileOnly 'org.slf4j:slf4j-api:1.7.32'

0 commit comments

Comments
 (0)