Skip to content

Commit

Permalink
scala 2.13.14
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Jun 22, 2024
1 parent 9377b83 commit fe2c814
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.11.12, 2.12.19, 2.13.13, 3.3.3]
scala: [2.11.12, 2.12.19, 2.13.14, 3.3.3]
java: [zulu@8, zulu@11, zulu@17, zulu@21]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.13]
scala: [2.13.14]
java: [zulu@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -147,12 +147,12 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.13)
- name: Download target directories (2.13.14)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }}
name: target-${{ matrix.os }}-2.13.14-${{ matrix.java }}

- name: Inflate target directories (2.13.13)
- name: Inflate target directories (2.13.14)
run: |
tar xf targets.tar
rm targets.tar
Expand All @@ -170,7 +170,7 @@ jobs:
- env:
CI_SNAPSHOT_RELEASE: +publishSigned
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
SONATYPE_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD3 }}
SONATYPE_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME3 }}
SONATYPE_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
run: sbt -J-Xmx2G ci-release
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ organization := "tools.jackson.module"

ThisBuild / version := "3.0.0-SNAPSHOT"

val scala213Version = "2.13.13"
val scala213Version = "2.13.14"
ThisBuild / scalaVersion := scala213Version

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

0 comments on commit fe2c814

Please sign in to comment.