Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sangria-graphql/sangria-argonaut
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ffed29c2bc5b898b6fbe9f2cc9be1b75051932db
Choose a base ref
..
head repository: sangria-graphql/sangria-argonaut
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 386429dc50261b51b93f6ce11355a78f774eab59
Choose a head ref
Showing with 7 additions and 7 deletions.
  1. +4 −4 .github/workflows/ci.yml
  2. +1 −1 build.sbt
  3. +1 −1 project/build.properties
  4. +1 −1 project/plugins.sbt
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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.5.2]
java: [zulu@8]
runs-on: ${{ matrix.os }}
steps:
@@ -101,12 +101,12 @@ 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
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ homepage := Some(url("https://sangria-graphql.github.io/"))
licenses := Seq(
"Apache License, ASL Version 2.0" -> url("https://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.5.2")
ThisBuild / scalaVersion := crossScalaVersions.value.last
ThisBuild / githubWorkflowPublishTargetBranches := List()
ThisBuild / githubWorkflowBuildPreamble ++= List(
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
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -5,5 +5,5 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.0")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.14")
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2")