Skip to content

Commit

Permalink
Merge pull request #512 from scala-steward/update/scala-library-2.13.15
Browse files Browse the repository at this point in the history
Update scala-library, scala-reflect to 2.13.15
  • Loading branch information
vigoo authored Nov 17, 2024
2 parents 5fe9c43 + 5f79b76 commit e0ca223
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
scala: ["2.13.14", "3.3.1"]
scala: ["2.13.15", "3.3.3"]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -19,8 +19,8 @@ jobs:
- name: Coursier cache
uses: coursier/cache-action@v5
- name: Build and test
if: ${{ matrix.scala == '3.3.1' }}
if: ${{ matrix.scala == '3.3.3' }}
run: sbt ++${{ matrix.scala }} clean desert-core/test desert-coreJS/test desert-akka/test desert-cats/test desert-catsJS/test desert-cats-effect/test desert-cats-effectJS/test desert-zio/test desert-zioJS/test desert-zio-schema/test desert-zio-schemaJS/test desert-shardcake/test
- name: Build and test
if: ${{ matrix.scala != '3.3.1' }}
if: ${{ matrix.scala != '3.3.3' }}
run: sbt ++${{ matrix.scala }} clean coverage test coverageReport && bash <(curl -s https://codecov.io/bash)
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import sbtcrossproject.{CrossProject, CrossType}
import scoverage.ScoverageKeys.coverageEnabled
import xerial.sbt.Sonatype._

val scala2 = "2.13.14"
val scala3 = "3.3.4"
val scala2 = "2.13.15"
val scala3 = "3.3.3"

val zioVersion = "2.1.11"
val zioSchemaVersion = "1.5.0"
Expand Down
2 changes: 1 addition & 1 deletion golden-dataset-generator/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name := "golden-dataset-generator"

lazy val commonSettings = Seq(
organization := "io.github.vigoo",
scalaVersion := "2.13.14",
scalaVersion := "2.13.15",
scalacOptions := Seq(
"-deprecation",
"-unchecked"
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.1.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.2")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")
addSbtPlugin("com.47deg" % "sbt-microsites" % "1.4.3")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.6.1")
Expand Down

0 comments on commit e0ca223

Please sign in to comment.