Skip to content

Commit 650aa39

Browse files
authored
update dependencies (#590)
2 parents ea16c4d + cb72967 commit 650aa39

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/pr.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
java: [17, 20]
10+
java: [17, 21]
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Set up JDK ${{ matrix.java }}
1414
uses: actions/setup-java@v3
1515
with:
1616
java-version: ${{ matrix.java }}
17-
distribution: 'temurin'
17+
distribution: 'zulu'
1818
cache: 'sbt'
1919
- name: Build
2020
run: cat /dev/null | project/sbt clean test
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/setup-java@v3
2727
with:
2828
java-version: 17
29-
distribution: 'temurin'
29+
distribution: 'zulu'
3030
cache: 'sbt'
3131
- name: Build
3232
run: cat /dev/null | project/sbt checkLicenseHeaders

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/setup-java@v3
1717
with:
1818
java-version: 17
19-
distribution: 'temurin'
19+
distribution: 'zulu'
2020
cache: 'sbt'
2121
- name: SetupPGP
2222
run: echo $ORG_SIGNING_KEY | sed -r 's/-----[^-]+-----//g;s/\n//g;s/ //g' | base64 --decode | gpg --batch --import

.github/workflows/snapshot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/setup-java@v3
1717
with:
1818
java-version: 17
19-
distribution: 'temurin'
19+
distribution: 'zulu'
2020
cache: 'sbt'
2121
- name: SetupPGP
2222
run: echo $ORG_SIGNING_KEY | sed -r 's/-----[^-]+-----//g;s/\n//g;s/ //g' | base64 --decode | gpg --batch --import

project/Dependencies.scala

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import sbt._
33
object Dependencies {
44
object Versions {
55
val assertj = "3.24.2"
6-
val aws2 = "2.20.136"
6+
val aws2 = "2.20.162"
77
val jackson = "2.15.2"
88
val scala = "2.12.15"
99
val slf4j = "1.7.36"
10-
val spectator = "1.6.10"
11-
val spring = "6.0.11"
10+
val spectator = "1.6.11"
11+
val spring = "6.0.12"
1212
}
1313

1414
import Versions._
@@ -21,7 +21,7 @@ object Dependencies {
2121
val aws2STS = "software.amazon.awssdk" % "sts" % aws2
2222
val aws2UrlClient = "software.amazon.awssdk" % "url-connection-client" % aws2
2323
val caffeine = "com.github.ben-manes.caffeine" % "caffeine" % "3.1.8"
24-
val equalsVerifier = "nl.jqno.equalsverifier" % "equalsverifier" % "3.15.1"
24+
val equalsVerifier = "nl.jqno.equalsverifier" % "equalsverifier" % "3.15.2"
2525
val jacksonCore = "com.fasterxml.jackson.core" % "jackson-core" % jackson
2626
val jacksonMapper = "com.fasterxml.jackson.core" % "jackson-databind" % jackson
2727
val jakartaAnno = "jakarta.annotation" % "jakarta.annotation-api" % "2.1.1"
@@ -31,7 +31,7 @@ object Dependencies {
3131
val junit = "junit" % "junit" % "4.12"
3232
val junitInterface = "com.novocode" % "junit-interface" % "0.11"
3333
val jzlib = "com.jcraft" % "jzlib" % "1.1.3"
34-
val mockitoCore = "org.mockito" % "mockito-core" % "5.5.0"
34+
val mockitoCore = "org.mockito" % "mockito-core" % "5.6.0"
3535
val slf4jApi = "org.slf4j" % "slf4j-api" % slf4j
3636
val spectatorApi = "com.netflix.spectator" % "spectator-api" % spectator
3737
val spectatorAtlas = "com.netflix.spectator" % "spectator-reg-atlas" % spectator

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.9.4
1+
sbt.version=1.9.6

0 commit comments

Comments
 (0)