diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b83b934..88527c1 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.16, 3.3.7] + scala: [2.11.12, 2.12.20, 2.13.17, 3.3.7] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -70,7 +70,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.16] + scala: [2.13.17] 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.16) + - name: Download target directories (2.13.17) uses: actions/download-artifact@v5 with: - name: target-${{ matrix.os }}-2.13.16-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.17-${{ matrix.java }} - - name: Inflate target directories (2.13.16) + - name: Inflate target directories (2.13.17) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 2eefa3b..b6834f3 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.16" +ThisBuild / scalaVersion := "2.13.17" -ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.20", "2.13.16", "3.3.7") +ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.20", "2.13.17", "3.3.7") ThisBuild / organizationHomepage := Some(url("https://github.com/swagger-akka-http/swagger-scala-module"))