diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 737b2fc..18253b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.20, 2.13.15, 3.5.2] + scala: [2.12.20, 2.13.16, 3.6.3] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -71,7 +71,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.5.2] + scala: [3.6.3] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -101,22 +101,22 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.15) + - name: Download target directories (2.13.16) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.13.15-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.16-${{ matrix.java }} - - name: Inflate target directories (2.13.15) + - name: Inflate target directories (2.13.16) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.5.2) + - name: Download target directories (3.6.3) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-3.5.2-${{ matrix.java }} + name: target-${{ matrix.os }}-3.6.3-${{ matrix.java }} - - name: Inflate target directories (3.5.2) + - name: Inflate target directories (3.6.3) run: | tar xf targets.tar rm targets.tar diff --git a/.scalafmt.conf b/.scalafmt.conf index 06db72f..7a6ee14 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.8.3 +version = 3.8.6 runner.dialect = scala213 diff --git a/build.sbt b/build.sbt index 8f81643..5b85c97 100644 --- a/build.sbt +++ b/build.sbt @@ -16,7 +16,7 @@ homepage := Some(url("http://sangria-graphql.org")) licenses := Seq( "Apache License, ASL Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")) -ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.15", "3.5.2") +ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.16", "3.6.3") ThisBuild / scalaVersion := crossScalaVersions.value.last ThisBuild / githubWorkflowPublishTargetBranches := List() ThisBuild / githubWorkflowBuildPreamble ++= List( diff --git a/project/build.properties b/project/build.properties index e88a0d8..73df629 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.6 +sbt.version=1.10.7 diff --git a/project/plugins.sbt b/project/plugins.sbt index 0aa89b1..4515232 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4") -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.2") +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.0") addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.15") addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0") -addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.0") +addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2")