Skip to content

Commit fd66603

Browse files
committed
upgrade jackson-core and scala
1 parent bec62f5 commit fd66603

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 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.11.12, 2.12.18, 2.13.12, 3.3.1]
26+
scala: [2.11.12, 2.12.19, 2.13.13, 3.3.3]
2727
java: [zulu@8, zulu@11, zulu@17, zulu@21]
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -136,32 +136,32 @@ jobs:
136136
tar xf targets.tar
137137
rm targets.tar
138138
139-
- name: Download target directories (2.12.18)
139+
- name: Download target directories (2.12.19)
140140
uses: actions/download-artifact@v4
141141
with:
142-
name: target-${{ matrix.os }}-2.12.18-${{ matrix.java }}
142+
name: target-${{ matrix.os }}-2.12.19-${{ matrix.java }}
143143

144-
- name: Inflate target directories (2.12.18)
144+
- name: Inflate target directories (2.12.19)
145145
run: |
146146
tar xf targets.tar
147147
rm targets.tar
148148
149-
- name: Download target directories (2.13.12)
149+
- name: Download target directories (2.13.13)
150150
uses: actions/download-artifact@v4
151151
with:
152-
name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }}
152+
name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }}
153153

154-
- name: Inflate target directories (2.13.12)
154+
- name: Inflate target directories (2.13.13)
155155
run: |
156156
tar xf targets.tar
157157
rm targets.tar
158158
159-
- name: Download target directories (3.3.1)
159+
- name: Download target directories (3.3.3)
160160
uses: actions/download-artifact@v4
161161
with:
162-
name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }}
162+
name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }}
163163

164-
- name: Inflate target directories (3.3.1)
164+
- name: Inflate target directories (3.3.3)
165165
run: |
166166
tar xf targets.tar
167167
rm targets.tar

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ organization := "com.fasterxml.jackson.module"
88

99
ThisBuild / scalaVersion := "2.13.12"
1010

11-
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.18", "2.13.12", "3.3.1")
11+
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.19", "2.13.13", "3.3.3")
1212

1313
resolvers ++= Resolver.sonatypeOssRepos("snapshots")
1414

15-
val jacksonVersion = "2.17.0-rc1"
15+
val jacksonVersion = "2.17.0"
1616

1717
autoAPIMappings := true
1818

0 commit comments

Comments
 (0)