From 5c5e58d763bcf5e38212b73299e661d0468e0dbb Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Wed, 1 Oct 2025 23:10:35 +0100 Subject: [PATCH] scala 2.13.17 --- .github/workflows/ci.yml | 10 +++++----- build.sbt | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b442a66..761a9649 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.20, 2.13.16, 3.3.6] + scala: [2.12.20, 2.13.17, 3.3.6] java: [zulu@17, zulu@21] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.16] + scala: [2.13.17] java: [zulu@17] runs-on: ${{ matrix.os }} steps: @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.16) + - name: Download target directories (2.13.17) uses: actions/download-artifact@v5 with: - name: target-${{ matrix.os }}-2.13.16-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.17-${{ matrix.java }} - - name: Inflate target directories (2.13.16) + - name: Inflate target directories (2.13.17) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index fa7e528c..a793aaa8 100644 --- a/build.sbt +++ b/build.sbt @@ -7,7 +7,7 @@ name := "jackson-module-scala" organization := "tools.jackson.module" -val scala213Version = "2.13.16" +val scala213Version = "2.13.17" ThisBuild / scalaVersion := scala213Version ThisBuild / crossScalaVersions := Seq("2.12.20", scala213Version, "3.3.6")