Skip to content

Commit 550981a

Browse files
committed
upgrade scala
1 parent e38523e commit 550981a

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 11 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.19, 2.13.14, 3.3.3]
26+
scala: [2.11.12, 2.12.20, 2.13.15, 3.3.4]
2727
java: [zulu@8, zulu@11, zulu@17, zulu@21]
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -85,7 +85,7 @@ jobs:
8585
strategy:
8686
matrix:
8787
os: [ubuntu-latest]
88-
scala: [2.13.14]
88+
scala: [2.13.15]
8989
java: [zulu@8]
9090
runs-on: ${{ matrix.os }}
9191
steps:
@@ -136,32 +136,32 @@ jobs:
136136
tar xf targets.tar
137137
rm targets.tar
138138
139-
- name: Download target directories (2.12.19)
139+
- name: Download target directories (2.12.20)
140140
uses: actions/download-artifact@v4
141141
with:
142-
name: target-${{ matrix.os }}-2.12.19-${{ matrix.java }}
142+
name: target-${{ matrix.os }}-2.12.20-${{ matrix.java }}
143143

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

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

164-
- name: Inflate target directories (3.3.3)
164+
- name: Inflate target directories (3.3.4)
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
@@ -6,10 +6,10 @@ name := "jackson-module-scala"
66

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

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

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

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

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.10.1
1+
sbt.version=1.10.2

0 commit comments

Comments
 (0)