Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 25, 2024
1 parent 2143727 commit 0ef6565
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: eclipse-temurin:21.0.3_9-jdk-jammy
image: eclipse-temurin:21.0.4_7-jdk-jammy

variables:
CONTAINER_IMAGE: beo1975/book-library-service:latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public abstract class AbstractTestResources {
private static final KeycloakContainer KEYCLOAK_CONTAINER;

private static final LocalStackContainer LOCAL_STACK_CONTAINER =
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.5.0"));
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.6.0"));

static {
REPOSITORY_CONTAINER.start();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public KeycloakContainer keycloakContainer(DynamicPropertyRegistry registry) {
@RestartScope
public LocalStackContainer localStackContainer(DynamicPropertyRegistry registry)
throws IOException, InterruptedException {
try (var container = new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.5.0"))) {
try (var container = new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.6.0"))) {
container.withServices(
LocalStackContainer.Service.SQS,
LocalStackContainer.Service.SES,
Expand Down
2 changes: 1 addition & 1 deletion cdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"service:destroy": "cdk destroy --app \"../gradlew :cdk:run -PmainClass=com.book.library.cdk.ServiceApp\" --force --require-approval never --all"
},
"devDependencies": {
"aws-cdk": "2.149.0"
"aws-cdk": "2.150.0"
},
"engines": {
"node": ">=16"
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spring-cloud-aws-sqs = { module = "io.awspring.cloud:spring-cloud-aws-starter-sq
spring-cloud-aws-ses = { module = "io.awspring.cloud:spring-cloud-aws-starter-ses" }
spring-cloud-aws-dynamodb = { module = "io.awspring.cloud:spring-cloud-aws-starter-dynamodb" }
aws-sdk-cognito-idp = { module = "software.amazon.awssdk:cognitoidentityprovider" }
aws-cdk-lib = { module = "software.amazon.awscdk:aws-cdk-lib", version = "2.149.0" }
aws-cdk-lib = { module = "software.amazon.awscdk:aws-cdk-lib", version = "2.150.0" }
logback-awslogs-json = { module = "de.siegmar:logback-awslogs-json-encoder", version = "2.0.0" }

# code quality
Expand All @@ -47,9 +47,9 @@ rewrite-migrate-java = { module = "org.openrewrite.recipe:rewrite-migrate-java"
rewrite-spring = { module = "org.openrewrite.recipe:rewrite-spring" }

# gradle plugins
spring-boot = { module = "org.springframework.boot:spring-boot-gradle-plugin", version = "3.3.1" }
spring-boot = { module = "org.springframework.boot:spring-boot-gradle-plugin", version = "3.3.2" }
git-properties = { module = "com.gorylenko.gradle-git-properties:gradle-git-properties", version = "2.4.2" }
diffplug-spotless = { module = "com.diffplug.spotless:spotless-plugin-gradle", version = "6.25.0" }
sonarqube = { module = "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin", version = "5.1.0.4882" }
cyclonedx-sbom = { module = "org.cyclonedx:cyclonedx-gradle-plugin", version = "1.8.2" }
cyclonedx-sbom = { module = "org.cyclonedx:cyclonedx-gradle-plugin", version = "1.9.0" }
open-rewrite = { module = "org.openrewrite:plugin", version = "6.16.4" }

0 comments on commit 0ef6565

Please sign in to comment.