Skip to content

Commit 6f50740

Browse files
committed
upgrade scala
1 parent ae68310 commit 6f50740

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

+8-8
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.20, 2.13.15, 3.3.4]
26+
scala: [2.11.12, 2.12.20, 2.13.16, 3.3.5]
2727
java: [zulu@8, zulu@11, zulu@17, zulu@21]
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -88,7 +88,7 @@ jobs:
8888
strategy:
8989
matrix:
9090
os: [ubuntu-latest]
91-
scala: [2.13.15]
91+
scala: [2.13.16]
9292
java: [zulu@8]
9393
runs-on: ${{ matrix.os }}
9494
steps:
@@ -152,22 +152,22 @@ jobs:
152152
tar xf targets.tar
153153
rm targets.tar
154154
155-
- name: Download target directories (2.13.15)
155+
- name: Download target directories (2.13.16)
156156
uses: actions/download-artifact@v4
157157
with:
158-
name: target-${{ matrix.os }}-2.13.15-${{ matrix.java }}
158+
name: target-${{ matrix.os }}-2.13.16-${{ matrix.java }}
159159

160-
- name: Inflate target directories (2.13.15)
160+
- name: Inflate target directories (2.13.16)
161161
run: |
162162
tar xf targets.tar
163163
rm targets.tar
164164
165-
- name: Download target directories (3.3.4)
165+
- name: Download target directories (3.3.5)
166166
uses: actions/download-artifact@v4
167167
with:
168-
name: target-${{ matrix.os }}-3.3.4-${{ matrix.java }}
168+
name: target-${{ matrix.os }}-3.3.5-${{ matrix.java }}
169169

170-
- name: Inflate target directories (3.3.4)
170+
- name: Inflate target directories (3.3.5)
171171
run: |
172172
tar xf targets.tar
173173
rm targets.tar

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ name := "jackson-module-scala"
66

77
organization := "com.fasterxml.jackson.module"
88

9-
val scala213Version = "2.13.15"
9+
val scala213Version = "2.13.16"
1010
ThisBuild / scalaVersion := scala213Version
1111

12-
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.20", scala213Version, "3.3.4")
12+
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.20", scala213Version, "3.3.5")
1313

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

0 commit comments

Comments
 (0)