diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 5aaf3fa..ff65c0e 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: ['8', '17'] + java: ['11', '17'] steps: - uses: actions/checkout@v3 - uses: actions/setup-java@v3 diff --git a/.mill-version b/.mill-version index 1a77547..ac454c6 100644 --- a/.mill-version +++ b/.mill-version @@ -1 +1 @@ -0.11.11 +0.12.0 diff --git a/build.sc b/build.sc index aade245..c76a6af 100644 --- a/build.sc +++ b/build.sc @@ -7,7 +7,7 @@ import com.github.lolgab.mill.mima._ val dottyCommunityBuildVersion = sys.props.get("dottyVersion").toList val scalaVersions = - Seq("2.12.16", "2.13.8", "3.3.1") ++ dottyCommunityBuildVersion + Seq("2.12.16", "2.13.14", "3.3.1") ++ dottyCommunityBuildVersion trait PPrintModule extends CrossScalaModule with PublishModule with PlatformScalaModule with Mima { @@ -57,7 +57,7 @@ object pprint extends Module { object js extends Cross[JsPPrintModule](scalaVersions) trait JsPPrintModule extends PPrintModule with ScalaJSModule { - def scalaJSVersion = "1.12.0" + def scalaJSVersion = "1.16.0" object test extends ScalaJSTests with PPrintTestModule }