diff --git a/.github/workflows/ado_artifacts_build.yaml b/.github/workflows/ado_artifacts_build.yaml index 9a39348..0b6c3f8 100644 --- a/.github/workflows/ado_artifacts_build.yaml +++ b/.github/workflows/ado_artifacts_build.yaml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: submodules: recursive diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 002cca2..9aeef75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up JDK 21 uses: actions/setup-java@v5 with: diff --git a/build.gradle b/build.gradle index d5748c9..0600468 100644 --- a/build.gradle +++ b/build.gradle @@ -4,10 +4,10 @@ plugins { id 'checkstyle' id 'jacoco' id 'io.spring.dependency-management' version '1.1.7' - id 'org.owasp.dependencycheck' version '12.1.3' + id 'org.owasp.dependencycheck' version '12.1.6' id 'com.github.ben-manes.versions' version '0.53.0' - id 'org.sonarqube' version '7.0.1.6134' - id 'io.freefair.lombok' version '9.0.0' + id 'org.sonarqube' version '7.2.2.6593' + id 'io.freefair.lombok' version '9.1.0' id 'maven-publish' } @@ -62,7 +62,7 @@ test { } checkstyle { - toolVersion = '12.1.1' + toolVersion = '13.0.0' } jacocoTestReport { @@ -118,14 +118,14 @@ repositories { ext { log4JVersion = '2.25.3' - spring = '3.5.7' + spring = '3.5.9' } dependencies { implementation "org.springframework.boot:spring-boot-starter-json:${spring}" implementation "org.springframework.boot:spring-boot-starter-data-jpa:${spring}" implementation "org.springframework.boot:spring-boot-starter-oauth2-client:${spring}" - implementation "org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.14" + implementation "org.springdoc:springdoc-openapi-starter-webmvc-ui:3.0.0" implementation "org.apache.logging.log4j:log4j-api:${log4JVersion}" implementation "org.apache.logging.log4j:log4j-to-slf4j:${log4JVersion}" @@ -138,7 +138,7 @@ dependencies { testImplementation "org.springframework.boot:spring-boot-starter-test:${spring}" testImplementation "com.github.hmcts:fortify-client:1.4.10:all" - implementation 'org.apache.commons:commons-lang3:3.19.0' + implementation 'org.apache.commons:commons-lang3:3.20.0' } tasks.register('fortifyScan', JavaExec) { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 6954be8..4eac4a8 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-all.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME