Skip to content

Commit

Permalink
scala 2.13.13
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Mar 13, 2024
1 parent b1ffe98 commit 4eb8a40
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
22 changes: 11 additions & 11 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.18, 2.13.12, 3.3.1]
scala: [2.11.12, 2.12.19, 2.13.13, 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.12]
scala: [2.13.13]
java: [zulu@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -137,32 +137,32 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.12.18)
- name: Download target directories (2.12.19)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-2.12.18-${{ matrix.java }}
name: target-${{ matrix.os }}-2.12.19-${{ matrix.java }}

- name: Inflate target directories (2.12.18)
- name: Inflate target directories (2.12.19)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.12)
- name: Download target directories (2.13.13)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }}
name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }}

- name: Inflate target directories (2.13.12)
- name: Inflate target directories (2.13.13)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.1)
- name: Download target directories (3.3.3)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }}
name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }}

- name: Inflate target directories (3.3.1)
- name: Inflate target directories (3.3.3)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ organization := "tools.jackson.module"

ThisBuild / version := "3.0.0-SNAPSHOT"

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

ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.18", "2.13.12", "3.3.1")
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.19", scala213Version, "3.3.3")

sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeRepository := "s01.oss.sonatype.org"
Expand Down

0 comments on commit 4eb8a40

Please sign in to comment.