Skip to content

Commit fe2c814

Browse files
committed
scala 2.13.14
1 parent 9377b83 commit fe2c814

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 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.13, 3.3.3]
26+
scala: [2.11.12, 2.12.19, 2.13.14, 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.13]
89+
scala: [2.13.14]
9090
java: [zulu@8]
9191
runs-on: ${{ matrix.os }}
9292
steps:
@@ -147,12 +147,12 @@ jobs:
147147
tar xf targets.tar
148148
rm targets.tar
149149
150-
- name: Download target directories (2.13.13)
150+
- name: Download target directories (2.13.14)
151151
uses: actions/download-artifact@v4
152152
with:
153-
name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }}
153+
name: target-${{ matrix.os }}-2.13.14-${{ matrix.java }}
154154

155-
- name: Inflate target directories (2.13.13)
155+
- name: Inflate target directories (2.13.14)
156156
run: |
157157
tar xf targets.tar
158158
rm targets.tar
@@ -170,7 +170,7 @@ jobs:
170170
- env:
171171
CI_SNAPSHOT_RELEASE: +publishSigned
172172
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
173-
SONATYPE_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD3 }}
174-
SONATYPE_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME3 }}
173+
SONATYPE_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }}
174+
SONATYPE_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
175175
PGP_SECRET: ${{ secrets.PGP_SECRET }}
176176
run: sbt -J-Xmx2G ci-release

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ organization := "tools.jackson.module"
77

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

10-
val scala213Version = "2.13.13"
10+
val scala213Version = "2.13.14"
1111
ThisBuild / scalaVersion := scala213Version
1212

1313
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.19", scala213Version, "3.3.3")

0 commit comments

Comments
 (0)