From 917741649fcfc4206c8583f6bb70afe1bdea73b1 Mon Sep 17 00:00:00 2001 From: Tobias Roeser Date: Tue, 3 Sep 2024 12:59:34 +0200 Subject: [PATCH] Add support for Scala 2.12.20 Fix https://github.com/com-lihaoyi/Ammonite/issues/1540 --- .github/workflows/actions.yml | 6 +++--- build.sc | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 4c5cb0796..64e5c8cfc 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -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 @@ -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 @@ -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 diff --git a/build.sc b/build.sc index 812981e85..cd97f0a39 100644 --- a/build.sc +++ b/build.sc @@ -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)