Skip to content

Commit 852087f

Browse files
committed
wip
1 parent 195efa8 commit 852087f

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
scala: [2.12.21, 2.13.18, 3.3.7]
26+
scala: [2.12.21, 2.13.18, 3.8.1]
2727
java: [zulu@17, zulu@21, zulu@25]
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -80,7 +80,7 @@ jobs:
8080
strategy:
8181
matrix:
8282
os: [ubuntu-latest]
83-
scala: [2.13.18]
83+
scala: [3.8.1]
8484
java: [zulu@17]
8585
runs-on: ${{ matrix.os }}
8686
steps:
@@ -136,12 +136,12 @@ jobs:
136136
tar xf targets.tar
137137
rm targets.tar
138138
139-
- name: Download target directories (3.3.7)
139+
- name: Download target directories (3.8.1)
140140
uses: actions/download-artifact@v6
141141
with:
142-
name: target-${{ matrix.os }}-3.3.7-${{ matrix.java }}
142+
name: target-${{ matrix.os }}-3.8.1-${{ matrix.java }}
143143

144-
- name: Inflate target directories (3.3.7)
144+
- name: Inflate target directories (3.8.1)
145145
run: |
146146
tar xf targets.tar
147147
rm targets.tar

build.sbt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ name := "jackson-module-scala"
88

99
organization := "tools.jackson.module"
1010

11+
val scala212Version = "2.12.21"
1112
val scala213Version = "2.13.18"
12-
ThisBuild / scalaVersion := scala213Version
13+
val scala3Version = "3.8.1"
14+
ThisBuild / scalaVersion := scala3Version
1315

14-
ThisBuild / crossScalaVersions := Seq("2.12.21", scala213Version, "3.3.7")
16+
ThisBuild / crossScalaVersions := Seq(scala212Version, scala213Version, scala3Version)
1517

1618
ThisBuild / sonatypeCredentialHost := sonatypeCentralHost
1719

0 commit comments

Comments
 (0)