Skip to content

Commit 01ed651

Browse files
authored
Merge pull request #5757 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 8b55a3e + 84c0260 commit 01ed651

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.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@ac463ffd9cc4c6ad5682af93dc3e3591c4657ee3 # v5.19.0
21+
- uses: release-drafter/release-drafter@06a49bf28488e030d35ca2ac6dbf7f408a481779 # v5.19.0
2222
env:
2323
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@923ad837f191474af6b1721408744feb989a4c27 # v3.10.1
26+
uses: peter-evans/create-pull-request@18f90432bedd2afd6a825469ffd38aa24712a91d # v3.10.1
2727
with:
2828
title: Update docs version to ${GITHUB_REF##*/}
2929
body: |

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:20220320'
12-
testImplementation 'org.postgresql:postgresql:42.4.1'
12+
testImplementation 'org.postgresql:postgresql:42.4.2'
1313
testImplementation 'ch.qos.logback:logback-classic:1.2.11'
1414
testImplementation 'org.testcontainers:postgresql'
1515
testImplementation 'org.assertj:assertj-core:3.23.1'

modules/cockroachdb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies {
44
api project(':jdbc')
55

66
testImplementation project(':jdbc-test')
7-
testImplementation 'org.postgresql:postgresql:42.4.1'
7+
testImplementation 'org.postgresql:postgresql:42.4.2'
88
testImplementation 'org.assertj:assertj-core:3.23.1'
99
}

modules/dynalite/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: Dynalite"
33
dependencies {
44
api project(':testcontainers')
55

6-
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.281'
6+
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.285'
77
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.281'
88
testImplementation 'org.assertj:assertj-core:3.23.1'
99
}

modules/junit-jupiter/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies {
1515
testImplementation 'org.assertj:assertj-core:3.23.1'
1616
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.0'
1717

18-
testRuntimeOnly 'org.postgresql:postgresql:42.4.1'
18+
testRuntimeOnly 'org.postgresql:postgresql:42.4.2'
1919
testRuntimeOnly 'mysql:mysql-connector-java:8.0.30'
2020
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
2121
}

modules/localstack/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ description = "Testcontainers :: Localstack"
33
dependencies {
44
api project(':testcontainers')
55

6-
compileOnly 'com.amazonaws:aws-java-sdk-s3:1.12.281'
7-
testImplementation 'com.amazonaws:aws-java-sdk-s3:1.12.273'
6+
compileOnly 'com.amazonaws:aws-java-sdk-s3:1.12.285'
7+
testImplementation 'com.amazonaws:aws-java-sdk-s3:1.12.285'
88
testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.282'
99
testImplementation 'com.amazonaws:aws-java-sdk-logs:1.12.281'
10-
testImplementation 'software.amazon.awssdk:s3:2.17.253'
10+
testImplementation 'software.amazon.awssdk:s3:2.17.256'
1111
testImplementation 'org.assertj:assertj-core:3.23.1'
1212
}

modules/postgresql/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111

1212
testImplementation project(':jdbc-test')
1313
testImplementation project(':test-support')
14-
testImplementation 'org.postgresql:postgresql:42.4.1'
14+
testImplementation 'org.postgresql:postgresql:42.4.2'
1515

1616
testImplementation testFixtures(project(':r2dbc'))
1717
testImplementation 'io.r2dbc:r2dbc-postgresql:0.8.11.RELEASE'

modules/trino/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies {
44
api project(':jdbc')
55

66
testImplementation project(':jdbc-test')
7-
testImplementation 'io.trino:trino-jdbc:392'
7+
testImplementation 'io.trino:trino-jdbc:393'
88
compileOnly 'org.jetbrains:annotations:23.0.0'
99
}

0 commit comments

Comments
 (0)