diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93744d90..bf13e535 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.2.1] + scala: [3.2.2] java: [temurin@17] project: [rootJS, rootJVM] runs-on: ${{ matrix.os }} @@ -118,7 +118,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.2.1] + scala: [3.2.2] java: [temurin@17] runs-on: ${{ matrix.os }} steps: @@ -155,22 +155,22 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (3.2.1, rootJS) + - name: Download target directories (3.2.2, rootJS) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.1-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJS - - name: Inflate target directories (3.2.1, rootJS) + - name: Inflate target directories (3.2.2, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.1, rootJVM) + - name: Download target directories (3.2.2, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.1-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJVM - - name: Inflate target directories (3.2.1, rootJVM) + - name: Inflate target directories (3.2.2, rootJVM) run: | tar xf targets.tar rm targets.tar @@ -194,7 +194,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.2.1] + scala: [3.2.2] java: [temurin@17] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index e2d8d368..26a7613e 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ ThisBuild / tlCiReleaseBranches ++= Seq("series/0.1") ThisBuild / tlSitePublishBranch := Some("main") ThisBuild / tlSonatypeUseLegacyHost := false -ThisBuild / crossScalaVersions := Seq("3.2.1") +ThisBuild / crossScalaVersions := Seq("3.2.2") ThisBuild / scalacOptions ++= Seq("-new-syntax", "-indent", "-source:future") ThisBuild / scalafixDependencies += "com.github.liancheng" %% "organize-imports" % "0.6.0"