Skip to content

Commit

Permalink
Patch updates (#1781)
Browse files Browse the repository at this point in the history
* Update guava to 33.3.1-jre

* Update protobuf-java to 3.25.5

* Update metrics-jmx to 4.2.28

* Update junit-jupiter-engine to 5.11.2

* Update scala-library to 2.13.15

* Update sbt-scoverage to 2.2.1

* fix CI trigger on fork repo pull requests

* removes CI trigger if condition

---------

Co-authored-by: Bekir Oguz <[email protected]>
  • Loading branch information
scala-steward and bekiroguz authored Oct 7, 2024
1 parent 7b0708e commit 2868963
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
contents: write
pull-requests: write
runs-on: ubuntu-latest
# This condition ensures the ci job runs only for push events that are not associated with a pull request (prevents duplicate runs)
if: ${{ github.event_name == 'push' && github.event.pull_request == null }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ lazy val buildExampleDockerCommand: Command = Command.command("buildExampleDocke
state
})

lazy val scala213 = "2.13.14"
lazy val scala213 = "2.13.15"

lazy val supportedScalaVersions = List(scala213)
val commonSettings: Seq[Setting[_]] = Defaults.coreDefaultSettings ++ Seq(
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ object Dependencies {
val mockitoScalaTest = "org.mockito" %% "mockito-scala-scalatest" % mockitoScalaVersion
val mockServer = "org.mock-server" % "mockserver-netty" % "5.15.0"
val junitInterface = "com.github.sbt" % "junit-interface" % "0.13.3"
val junitJupiter = "org.junit.jupiter" % "junit-jupiter-engine" % "5.11.0"
val junitJupiter = "org.junit.jupiter" % "junit-jupiter-engine" % "5.11.2"

val akkaActor = "com.typesafe.akka" %% "akka-actor" % akkaVersion

Expand Down Expand Up @@ -80,7 +80,7 @@ object Dependencies {
val cassandraUnit = "org.cassandraunit" % "cassandra-unit" % "4.3.1.0"
val cassandraDriverCore = "com.datastax.oss" % "java-driver-core" % "4.17.0"
val cassandraDriverQueryBuilder = "com.datastax.oss" % "java-driver-query-builder" % "4.17.0"
val cassandraDriverMetrics = "io.dropwizard.metrics" % "metrics-jmx" % "4.2.27"
val cassandraDriverMetrics = "io.dropwizard.metrics" % "metrics-jmx" % "4.2.28"

val skuber = "io.skuber" %% "skuber" % "2.6.7"
val play = "com.typesafe.play" %% "play-json" % "2.9.4"
Expand Down Expand Up @@ -115,7 +115,7 @@ object Dependencies {

val scalapbRuntime = "com.thesamet.scalapb" %% "scalapb-runtime" % scalapbVersion % "protobuf"

val protobufJava = "com.google.protobuf" % "protobuf-java" % "3.25.4" % "protobuf"
val protobufJava = "com.google.protobuf" % "protobuf-java" % "3.25.5" % "protobuf"

val betterFiles = "com.github.pathikrit" %% "better-files" % "3.9.2"

Expand Down Expand Up @@ -148,7 +148,7 @@ object Dependencies {
val bouncyCastleBcprov = "org.bouncycastle" % "bcprov-jdk18on" % bouncycastleVersion
val bouncyCastleBcpkix = "org.bouncycastle" % "bcpkix-jdk18on" % bouncycastleVersion

val guava = "com.google.guava" % "guava" % "33.3.0-jre"
val guava = "com.google.guava" % "guava" % "33.3.1-jre"

val kotlinXCoroutinesCore = "org.jetbrains.kotlinx" % "kotlinx-coroutines-core" % "1.7.3" pomOnly()
val kotlinXCoroutinesJdk8 = "org.jetbrains.kotlinx" % "kotlinx-coroutines-jdk8" % "1.7.3"
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.2.0")

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")

addSbtPlugin("net.vonbuchholtz" % "sbt-dependency-check" % "5.1.0")

Expand Down

0 comments on commit 2868963

Please sign in to comment.