Skip to content

Commit

Permalink
Merge branch 'main' into update/sbt-coveralls-1.3.15
Browse files Browse the repository at this point in the history
  • Loading branch information
sh0hei authored Feb 2, 2025
2 parents c6bb5b4 + e64f7d7 commit b234f47
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.8.3
version = 3.8.6

runner.dialect = scala213

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.6
sbt.version=1.10.7
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -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")

0 comments on commit b234f47

Please sign in to comment.