Skip to content

Commit

Permalink
Merge pull request #228 from sangria-graphql/use_scala3_lts
Browse files Browse the repository at this point in the history
stick to scala 3 LTS: 3.3.4
  • Loading branch information
yanns authored Sep 27, 2024
2 parents 7040f7f + ce88ff1 commit 26c4a1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 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.14, 3.4.3]
scala: [2.12.20, 2.13.14, 3.3.4]
java: [zulu@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.4.3]
scala: [3.3.4]
java: [zulu@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -111,12 +111,12 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.4.3)
- name: Download target directories (3.3.4)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-3.4.3-${{ matrix.java }}
name: target-${{ matrix.os }}-3.3.4-${{ matrix.java }}

- name: Inflate target directories (3.4.3)
- name: Inflate target directories (3.3.4)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ licenses := Seq(
"Apache License, ASL Version 2.0" url("https://www.apache.org/licenses/LICENSE-2.0"))

// sbt-github-actions needs configuration in `ThisBuild`
ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.14", "3.4.3")
ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.14", "3.3.4")
ThisBuild / scalaVersion := crossScalaVersions.value.last
ThisBuild / githubWorkflowPublishTargetBranches := List()
ThisBuild / githubWorkflowBuildPreamble ++= List(
Expand Down

0 comments on commit 26c4a1c

Please sign in to comment.