Skip to content

Commit

Permalink
Update dependencies and disable scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
DamianReeves committed Oct 4, 2024
1 parent 9c7cea6 commit b255273
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:

############### SONATYPE SCAN ###############
sonatype-scan:
if: always()
if: false
needs: [ci]
runs-on: ubuntu-latest
steps:
Expand Down
20 changes: 10 additions & 10 deletions project/deps.sc
Original file line number Diff line number Diff line change
Expand Up @@ -254,27 +254,27 @@ object Versions {
val spire = "0.18.0"
val `tasty-query` = "0.5.6"
val upickle = "3.0.0-M1"
val zio = "2.0.21"
val zio = "2.1-RC1"
val `zio-cli` = "0.5.0"
val `zio-config` = "4.0.0-RC16"
val `zio-config` = "4.0.2"
val `zio-interop-cats` = "23.1.0.0"
val `zio-json` = "0.6.2"
val `zio-json` = "0.7.3"
val `zio-nio` = "2.0.2"
val `zio-parser` = "0.1.9"
val `zio-parser` = "0.1.10"
val `zio-prelude` = "1.0.0-RC21"
val `zio-process` = "0.7.2"
val `zio-schema` = "0.4.12"
val `zio-schema` = "1.5.0"
}

object ScalaVersions {
import DevMode._
val all = if (devMode) Seq(scala3x) else Seq(scala213, scala3x)
def scala212 = "2.12.18"
def scala213 = "2.13.12"
def scala3x = "3.3.1"
def scala212 = "2.12.20"
def scala213 = "2.13.15"
def scala3x = "3.3.4"

def scalaJSVersion = "1.15.0"
def scalaNativeVersion = "0.4.16"
def scalaJSVersion = "1.17.0"
def scalaNativeVersion = "0.5.5"
def millScalaVersion = "2.13.10"
}

Expand Down

0 comments on commit b255273

Please sign in to comment.