Skip to content

Commit

Permalink
Add support for Scala 2.12.20
Browse files Browse the repository at this point in the history
Fix #1540
  • Loading branch information
lefou committed Sep 3, 2024
1 parent 7f7008f commit 9177416
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- java-version: 21
scala-version: 2.12.18
- java-version: 21
scala-version: 2.12.19
scala-version: 2.12.20
- java-version: 21
scala-version: 2.13.11
- java-version: 21
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
- java-version: 21
scala-version: 2.12.18
- java-version: 21
scala-version: 2.12.19
scala-version: 2.12.20
- java-version: 21
scala-version: 2.13.11
- java-version: 21
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
strategy:
fail-fast: false
matrix:
scala-version: [ 2.12.19, 2.13.14, 3.3.3, 3.4.2 ]
scala-version: [ 2.12.20, 2.13.14, 3.3.3, 3.4.2 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ val commitsSinceTaggedVersion = {
// if (_) println("Java 21+: Skip building of modules requiring incompatible Scala versions")
//}

val scala2_12Versions = 9.to(19)
val scala2_12Versions = 9.to(20)
// .dropWhile(v => isJava21 && v < 18)
.map(v => s"2.12.${v}")
val scala2_13Versions = 2.to(14)
Expand Down

0 comments on commit 9177416

Please sign in to comment.