Skip to content

Commit 700afd0

Browse files
committed
upgrade scala
1 parent d15c969 commit 700afd0

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest]
25-
scala: [2.11.12, 2.12.20, 2.13.15, 3.3.4]
25+
scala: [2.11.12, 2.12.20, 2.13.16, 3.3.5]
2626
java: [zulu@17, zulu@21]
2727
runs-on: ${{ matrix.os }}
2828
steps:
@@ -72,7 +72,7 @@ jobs:
7272
strategy:
7373
matrix:
7474
os: [ubuntu-latest]
75-
scala: [2.13.15]
75+
scala: [2.13.16]
7676
java: [zulu@17]
7777
runs-on: ${{ matrix.os }}
7878
steps:
@@ -120,22 +120,22 @@ jobs:
120120
tar xf targets.tar
121121
rm targets.tar
122122
123-
- name: Download target directories (2.13.15)
123+
- name: Download target directories (2.13.16)
124124
uses: actions/download-artifact@v4
125125
with:
126-
name: target-${{ matrix.os }}-2.13.15-${{ matrix.java }}
126+
name: target-${{ matrix.os }}-2.13.16-${{ matrix.java }}
127127

128-
- name: Inflate target directories (2.13.15)
128+
- name: Inflate target directories (2.13.16)
129129
run: |
130130
tar xf targets.tar
131131
rm targets.tar
132132
133-
- name: Download target directories (3.3.4)
133+
- name: Download target directories (3.3.5)
134134
uses: actions/download-artifact@v4
135135
with:
136-
name: target-${{ matrix.os }}-3.3.4-${{ matrix.java }}
136+
name: target-${{ matrix.os }}-3.3.5-${{ matrix.java }}
137137

138-
- name: Inflate target directories (3.3.4)
138+
- name: Inflate target directories (3.3.5)
139139
run: |
140140
tar xf targets.tar
141141
rm targets.tar

build.sbt

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

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

10-
val scala213Version = "2.13.15"
10+
val scala213Version = "2.13.16"
1111
ThisBuild / scalaVersion := scala213Version
1212

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

1515
sonatypeCredentialHost := "s01.oss.sonatype.org"
1616
sonatypeRepository := "s01.oss.sonatype.org"

0 commit comments

Comments
 (0)