Skip to content

Commit 4eb8a40

Browse files
committed
scala 2.13.13
1 parent b1ffe98 commit 4eb8a40

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
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.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:
@@ -86,7 +86,7 @@ jobs:
8686
strategy:
8787
matrix:
8888
os: [ubuntu-latest]
89-
scala: [2.13.12]
89+
scala: [2.13.13]
9090
java: [zulu@8]
9191
runs-on: ${{ matrix.os }}
9292
steps:
@@ -137,32 +137,32 @@ jobs:
137137
tar xf targets.tar
138138
rm targets.tar
139139
140-
- name: Download target directories (2.12.18)
140+
- name: Download target directories (2.12.19)
141141
uses: actions/download-artifact@v4
142142
with:
143-
name: target-${{ matrix.os }}-2.12.18-${{ matrix.java }}
143+
name: target-${{ matrix.os }}-2.12.19-${{ matrix.java }}
144144

145-
- name: Inflate target directories (2.12.18)
145+
- name: Inflate target directories (2.12.19)
146146
run: |
147147
tar xf targets.tar
148148
rm targets.tar
149149
150-
- name: Download target directories (2.13.12)
150+
- name: Download target directories (2.13.13)
151151
uses: actions/download-artifact@v4
152152
with:
153-
name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }}
153+
name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }}
154154

155-
- name: Inflate target directories (2.13.12)
155+
- name: Inflate target directories (2.13.13)
156156
run: |
157157
tar xf targets.tar
158158
rm targets.tar
159159
160-
- name: Download target directories (3.3.1)
160+
- name: Download target directories (3.3.3)
161161
uses: actions/download-artifact@v4
162162
with:
163-
name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }}
163+
name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }}
164164

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

build.sbt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ organization := "tools.jackson.module"
77

88
ThisBuild / version := "3.0.0-SNAPSHOT"
99

10-
ThisBuild / scalaVersion := "2.13.12"
10+
val scala213Version = "2.13.13"
11+
ThisBuild / scalaVersion := scala213Version
1112

12-
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.18", "2.13.12", "3.3.1")
13+
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.19", scala213Version, "3.3.3")
1314

1415
sonatypeCredentialHost := "s01.oss.sonatype.org"
1516
sonatypeRepository := "s01.oss.sonatype.org"

0 commit comments

Comments
 (0)