diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c22e8e..c865707 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.11.12, 2.12.20, 2.13.15, 3.3.4] + scala: [2.11.12, 2.12.20, 2.13.16, 3.3.4] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -70,7 +70,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.15] + scala: [2.13.16] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -110,12 +110,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.15) + - name: Download target directories (2.13.16) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.13.15-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.16-${{ matrix.java }} - - name: Inflate target directories (2.13.15) + - name: Inflate target directories (2.13.16) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index c711ef6..f95da4e 100644 --- a/build.sbt +++ b/build.sbt @@ -6,9 +6,9 @@ import sbtghactions.JavaSpec.Distribution.Zulu organization := "com.github.swagger-akka-http" -ThisBuild / scalaVersion := "2.13.15" +ThisBuild / scalaVersion := "2.13.16" -ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.20", "2.13.15", "3.3.4") +ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.20", "2.13.16", "3.3.4") ThisBuild / organizationHomepage := Some(url("https://github.com/swagger-akka-http/swagger-scala-module")) diff --git a/project/plugins.sbt b/project/plugins.sbt index 77df7e3..8dd4ae7 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.2") +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.0") addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0")