File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 :
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
Original file line number Diff line number Diff line change @@ -8,10 +8,12 @@ name := "jackson-module-scala"
88
99organization := " tools.jackson.module"
1010
11+ val scala212Version = " 2.12.21"
1112val 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
1618ThisBuild / sonatypeCredentialHost := sonatypeCentralHost
1719
You can’t perform that action at this time.
0 commit comments