Skip to content

Commit 09fef49

Browse files
authored
Merge pull request #6908 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents e8844eb + b23dd2b commit 09fef49

File tree

44 files changed

+63
-63
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+63
-63
lines changed

.github/workflows/combine-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
steps:
1414
- name: combine-prs
1515
id: combine-prs
16-
uses: github/combine-prs@v2.1.0
16+
uses: github/combine-prs@v3.0.1
1717
with:
1818
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@2b011faafdcbc9ceb11414d64d0573f37c774b04 # v3.10.1
26+
uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54 # v3.10.1
2727
with:
2828
title: Update docs version to ${GITHUB_REF##*/}
2929
body: |

.github/workflows/update-testcontainers-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/^testcontainers\.version=.*/testcontainers\.version=${GITHUB_REF##*/}/g" gradle.properties
2424
git diff
2525
- name: Create Pull Request
26-
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 # v3.10.1
26+
uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54 # v3.10.1
2727
with:
2828
title: Update testcontainers version to ${GITHUB_REF##*/}
2929
body: |

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313

1414
plugins {
1515
id 'io.franzbecker.gradle-lombok' version '5.0.0'
16-
id 'com.github.johnrengelman.shadow' version '8.1.0'
16+
id 'com.github.johnrengelman.shadow' version '8.1.1'
1717
id 'me.champeau.gradle.japicmp' version '0.4.1' apply false
1818
id 'com.diffplug.spotless' version '6.13.0' apply false
1919
}

core/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ configurations.all {
6969
dependencies {
7070
api 'junit:junit:4.13.2'
7171
api 'org.slf4j:slf4j-api:1.7.36'
72-
compileOnly 'org.jetbrains:annotations:24.0.0'
73-
testCompileOnly 'org.jetbrains:annotations:24.0.0'
72+
compileOnly 'org.jetbrains:annotations:24.0.1'
73+
testCompileOnly 'org.jetbrains:annotations:24.0.1'
7474
api 'org.apache.commons:commons-compress:1.22'
7575
api ('org.rnorth.duct-tape:duct-tape:1.0.8') {
7676
exclude(group: 'org.jetbrains', module: 'annotations')
7777
}
7878

79-
provided('com.google.cloud.tools:jib-core:0.22.0') {
79+
provided('com.google.cloud.tools:jib-core:0.23.0') {
8080
exclude group: 'com.google.guava', module: 'guava'
8181
exclude group: 'com.fasterxml.jackson.datatype', module: 'jackson-datatype-jsr310'
8282
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
@@ -101,10 +101,10 @@ dependencies {
101101

102102
shaded 'org.zeroturnaround:zt-exec:1.12'
103103

104-
testImplementation 'com.google.cloud.tools:jib-core:0.22.0'
104+
testImplementation 'com.google.cloud.tools:jib-core:0.23.0'
105105
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
106106
testImplementation 'redis.clients:jedis:4.3.1'
107-
testImplementation 'com.rabbitmq:amqp-client:5.16.0'
107+
testImplementation 'com.rabbitmq:amqp-client:5.17.0'
108108
testImplementation 'org.mongodb:mongo-java-driver:3.12.12'
109109

110110
testImplementation ('org.mockito:mockito-core:4.11.0') {

examples/hazelcast/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
testImplementation 'org.testcontainers:testcontainers'
11-
testImplementation 'com.hazelcast:hazelcast:5.2.2'
11+
testImplementation 'com.hazelcast:hazelcast:5.2.3'
1212
testImplementation 'ch.qos.logback:logback-classic:1.3.5'
1313
testImplementation 'org.assertj:assertj-core:3.24.2'
1414
}

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.36'
1010
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
1111
implementation 'org.json:json:20230227'
12-
testImplementation 'org.postgresql:postgresql:42.5.4'
12+
testImplementation 'org.postgresql:postgresql:42.6.0'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.5'
1414
testImplementation 'org.testcontainers:postgresql'
1515
testImplementation 'org.assertj:assertj-core:3.24.2'

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.36'
11-
implementation 'redis.clients:jedis:4.3.1'
11+
implementation 'redis.clients:jedis:4.3.2'
1212
implementation 'com.google.code.gson:gson:2.10.1'
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.36'
11-
implementation 'redis.clients:jedis:4.3.1'
11+
implementation 'redis.clients:jedis:4.3.2'
1212
implementation 'com.google.code.gson:gson:2.10.1'
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.7.9'
3+
id 'org.springframework.boot' version '2.7.10'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

0 commit comments

Comments
 (0)