From 9a2bedfdf29e72aa74bc3f63bccc45734178e577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Kozak?= Date: Thu, 20 Nov 2025 11:30:35 +0100 Subject: [PATCH] Update Scala version to 2.13.18 and scala-commons version to 2.25.0 --- .github/workflows/ci.yml | 10 +++++----- build.sbt | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) 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"