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