diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 580f790..80972a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.6, 2.13.16, 2.12.20] + scala: [3.3.7, 2.13.16, 2.12.20] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -65,7 +65,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.6] + scala: [3.3.7] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -85,12 +85,12 @@ jobs: - name: Setup sbt uses: sbt/setup-sbt@v1 - - 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 d9871ee..eb21a10 100644 --- a/build.sbt +++ b/build.sbt @@ -6,9 +6,9 @@ enablePlugins(GitBranchPrompt) organization := "com.davegurnell" name := "unindent" -ThisBuild / scalaVersion := "3.3.6" +ThisBuild / scalaVersion := "3.3.7" -ThisBuild / crossScalaVersions := Seq("3.3.6", "2.13.16", "2.12.20") +ThisBuild / crossScalaVersions := Seq("3.3.7", "2.13.16", "2.12.20") ThisBuild / scalacOptions ++= { CrossVersion.partialVersion(scalaVersion.value) match {