From 77b241bf387b3ac0556db7f812b05a250a30fa66 Mon Sep 17 00:00:00 2001 From: PaulBredl Date: Mon, 29 Apr 2024 11:52:53 +0200 Subject: [PATCH] upgrade some dependencies --- .github/workflows/test.yaml | 2 +- build.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a1488af..462719c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,7 +13,7 @@ jobs: java-version: '21' distribution: 'temurin' - name: Validate Gradle wrapper - uses: gradle/wrapper-validation-action@v2 + uses: gradle/wrapper-validation-action@v3 - name: Run chmod to make gradlew executable run: chmod +x gradlew - name: Execute tests diff --git a/build.gradle b/build.gradle index e8c455f..19d980a 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { id 'org.springframework.boot' version '3.+' id 'io.spring.dependency-management' version '1.+' id "io.github.kobylynskyi.graphql.codegen" version "5.+" - id "org.sonarqube" version "4.+" + id "org.sonarqube" version "5.+" id "jacoco" } @@ -81,7 +81,7 @@ dependencies { annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' annotationProcessor 'org.projectlombok:lombok' testImplementation 'org.springframework.boot:spring-boot-starter-test' - testImplementation "org.mockito:mockito-core:3.+" + testImplementation "org.mockito:mockito-core:5.+" testImplementation 'org.hamcrest:hamcrest:2.+' }