From 5bfbf687035bd9e277be9c4b02a92b0f32c081a3 Mon Sep 17 00:00:00 2001 From: Matthew de Detrich Date: Mon, 30 Sep 2024 10:39:11 +0200 Subject: [PATCH] Update Scala 2.13 and scoverage --- .github/workflows/ci.yml | 10 +++++----- build.sbt | 2 +- project/plugins.sbt | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d5e4c1..00cd205 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-12, macos-latest] - scala: [2.12.20, 2.13.14, 3.3.4] + scala: [2.12.20, 2.13.15, 3.3.4] java: [temurin@8, temurin@11, temurin@17, temurin@21] exclude: - java: temurin@8 @@ -105,7 +105,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.14] + scala: [2.13.15] java: [temurin@8] runs-on: ${{ matrix.os }} steps: @@ -159,12 +159,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.14) + - name: Download target directories (2.13.15) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.13.14-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.15-${{ matrix.java }} - - name: Inflate target directories (2.13.14) + - name: Inflate target directories (2.13.15) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 03fb3b6..c445d0a 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import com.jsuereth.sbtpgp.PgpKeys.publishSigned name := "pekko-streams-circe" -val scala213Version = "2.13.14" +val scala213Version = "2.13.15" val scala212Version = "2.12.20" val scala3Version = "3.3.4" diff --git a/project/plugins.sbt b/project/plugins.sbt index cb56030..c56b1ba 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -3,7 +3,7 @@ addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11. addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.0") +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1") addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.13") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4") addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0")