Skip to content

Commit d516d4b

Browse files
author
may
committed
Fix build
1 parent 12eea2e commit d516d4b

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
distribution: 'adopt'
2121
java-version: '17'
2222
- name: Cache Gradle packages
23-
uses: actions/cache@v2
23+
uses: actions/cache@v4
2424
with:
2525
path: |
2626
~/.gradle/caches

build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ plugins {
22
id 'java-library'
33
id 'checkstyle'
44
id 'jacoco'
5-
id "com.github.spotbugs" version "6.0.25"
5+
id "com.github.spotbugs" version "6.1.11"
66
id 'maven-publish'
77
id 'signing'
88
id "io.codearte.nexus-staging" version "0.30.0"
99
id 'com.adarshr.test-logger' version '4.0.0'
10-
id "com.github.ben-manes.versions" version "0.51.0"
11-
id 'org.sonatype.gradle.plugins.scan' version '2.8.3'
12-
id "org.sonarqube" version "5.1.0.4882"
10+
id "com.github.ben-manes.versions" version "0.52.0"
11+
id 'org.sonatype.gradle.plugins.scan' version '3.1.1'
12+
id "org.sonarqube" version "6.1.0.5360"
1313
}
1414

1515
group = 'com.imsweb'
@@ -34,19 +34,19 @@ repositories {
3434
}
3535

3636
dependencies {
37-
spotbugs 'com.github.spotbugs:spotbugs:4.8.6'
37+
spotbugs 'com.github.spotbugs:spotbugs:4.9.3'
3838

3939
api 'com.squareup.retrofit2:retrofit:2.11.0'
4040
api 'com.squareup.retrofit2:converter-jackson:2.11.0'
4141

4242
// retrofit will not update these dependencies to fix vulnerabilities
4343
api 'com.squareup.okhttp3:okhttp:4.12.0'
44-
api 'com.squareup.okio:okio:3.9.1'
44+
api 'com.squareup.okio:okio:3.11.0'
4545

46-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
47-
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.3'
48-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
49-
testImplementation 'org.assertj:assertj-core:3.26.3'
46+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.12.2'
47+
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.12.2'
48+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.12.2'
49+
testImplementation 'org.assertj:assertj-core:3.27.3'
5050
testImplementation 'com.google.code.bean-matchers:bean-matchers:0.14'
5151
}
5252

0 commit comments

Comments
 (0)