Skip to content

Commit

Permalink
upgrade jackson-core and scala
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Mar 13, 2024
1 parent bec62f5 commit fd66603
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 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 @@ -136,32 +136,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
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ organization := "com.fasterxml.jackson.module"

ThisBuild / scalaVersion := "2.13.12"

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

resolvers ++= Resolver.sonatypeOssRepos("snapshots")

val jacksonVersion = "2.17.0-rc1"
val jacksonVersion = "2.17.0"

autoAPIMappings := true

Expand Down

0 comments on commit fd66603

Please sign in to comment.