Skip to content

Commit

Permalink
update dependencies (#1441)
Browse files Browse the repository at this point in the history
  • Loading branch information
brharrington authored May 4, 2022
2 parents 57ac20c + eed59d7 commit c5681f0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
java: [11, 17]
java: [17, 18]
scala: [2.13.8]
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: 'zulu'
- uses: actions/cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: 'zulu'
- uses: actions/cache@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ object Dependencies {
object Versions {
val akka = "2.6.19"
val akkaHttpV = "10.2.9"
val iep = "3.0.16"
val iep = "3.0.18"
val guice = "5.1.0"
val jackson = "2.13.2"
val log4j = "2.17.2"
val scala = "2.13.8"
val slf4j = "1.7.36"
val spectator = "1.3.0"
val spectator = "1.3.2"

val crossScala = Seq(scala)
}
Expand All @@ -29,7 +29,7 @@ object Dependencies {
val akkaStreamTestkit = "com.typesafe.akka" %% "akka-stream-testkit" % akka
val akkaTestkit = "com.typesafe.akka" %% "akka-testkit" % akka
val caffeine = "com.github.ben-manes.caffeine" % "caffeine" % "2.9.3"
val datasketches = "org.apache.datasketches" % "datasketches-java" % "3.1.0"
val datasketches = "org.apache.datasketches" % "datasketches-java" % "3.2.0"
val equalsVerifier = "nl.jqno.equalsverifier" % "equalsverifier" % "3.10"
val guiceCoreBase = "com.google.inject" % "guice"
val guiceMultiBase = "com.google.inject.extensions" % "guice-multibindings"
Expand Down Expand Up @@ -57,7 +57,7 @@ object Dependencies {
val log4jJul = "org.apache.logging.log4j" % "log4j-jul" % log4j
val log4jSlf4j = "org.apache.logging.log4j" % "log4j-slf4j-impl" % log4j
val munit = "org.scalameta" %% "munit" % "0.7.29"
val postgres = "org.postgresql" % "postgresql" % "42.3.3"
val postgres = "org.postgresql" % "postgresql" % "42.3.5"
val postgresEmbedded = "io.zonky.test" % "embedded-postgres" % "1.3.1"
val roaringBitmap = "org.roaringbitmap" % "RoaringBitmap" % "0.9.26"
val scalaCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.7.0"
Expand Down

0 comments on commit c5681f0

Please sign in to comment.