diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95e836a..64b5e6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.16] + scala: [2.13.18] java: [temurin@17, temurin@21, temurin@25] runs-on: ${{ matrix.os }} steps: @@ -81,7 +81,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.16] + scala: [2.13.18] java: [temurin@17] runs-on: ${{ matrix.os }} steps: @@ -117,12 +117,12 @@ jobs: - name: Setup sbt uses: sbt/setup-sbt@v1 - - name: Download target directories (2.13.16) + - name: Download target directories (2.13.18) uses: actions/download-artifact@v5 with: - name: target-${{ matrix.os }}-2.13.16-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.18-${{ matrix.java }} - - name: Inflate target directories (2.13.16) + - name: Inflate target directories (2.13.18) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 49c3ff8..788c56f 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ name := "scex" inThisBuild(Seq( organization := "com.avsystem.scex", - scalaVersion := "2.13.16", + scalaVersion := "2.13.18", githubWorkflowTargetTags ++= Seq("v*"), githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17"), JavaSpec.temurin("21"), JavaSpec.temurin("25")), githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v"))), @@ -21,7 +21,7 @@ inThisBuild(Seq( val CompileAndTest = "compile->compile;test->test" val parserCombinatorsVersion = "2.4.0" -val avsCommonsVersion = "2.24.0" +val avsCommonsVersion = "2.25.0" val slf4jVersion = "2.0.17" val logbackVersion = "1.5.21" // Tests only val commonsLang3Version = "3.19.0"