Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Feb 13, 2025
1 parent 32a02f7 commit b6b5f65
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build-and-publish:
name: Java Gradle
uses: bakdata/ci-templates/.github/workflows/java-gradle-library.yaml@feature/sonar-branch-analysis
uses: bakdata/ci-templates/.github/workflows/java-gradle-library.yaml@1.62.0
with:
java-version: 17
secrets:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
java-gradle-release:
name: Java Gradle
uses: bakdata/ci-templates/.github/workflows/java-gradle-release.yaml@1.61.0
uses: bakdata/ci-templates/.github/workflows/java-gradle-release.yaml@1.62.0
with:
java-version: 17
release-type: "${{ inputs.release-type }}"
Expand Down
2 changes: 1 addition & 1 deletion large-message-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {
api(group = "org.apache.kafka", name = "kafka-clients", version = kafkaVersion)

implementation(group = "org.slf4j", name = "slf4j-api", version = "2.0.16")
val awsVersion = "2.29.52"
val awsVersion = "2.30.18"
api(group = "software.amazon.awssdk", name = "s3", version = awsVersion)
api(group = "software.amazon.awssdk", name = "sts", version = awsVersion)
api(group = "com.azure", name = "azure-storage-blob", version = "12.29.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
abstract class AmazonS3IntegrationTest {

private static final DockerImageName LOCAL_STACK_IMAGE = DockerImageName.parse("localstack/localstack")
.withTag("2.3.2");
.withTag("latest"); // TODO pin
@Container
private final LocalStackContainer localStackContainer = new LocalStackContainer(LOCAL_STACK_IMAGE)
.withServices(Service.S3);
Expand Down

0 comments on commit b6b5f65

Please sign in to comment.