Skip to content

Commit

Permalink
Update zio-schema, zio-schema-derivation to 1.4.1 (#106)
Browse files Browse the repository at this point in the history
* Update zio-schema, zio-schema-derivation to 1.4.1

* Remove java 8 from CI

---------

Co-authored-by: Michael Nedokushev <grouzen.hexy@gmail.com>
  • Loading branch information
scala-steward and grouzen authored Aug 25, 2024
1 parent 487f472 commit 1a28b7c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,14 @@ jobs:
matrix:
os: [ubuntu-latest]
scala: [2.12.19, 2.13.14, 3.3.3]
java: [zulu@8, temurin@11, temurin@17]
java: [temurin@11, temurin@17]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Java (zulu@8)
if: matrix.java == 'zulu@8'
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 8
cache: sbt

- name: Setup Java (temurin@11)
if: matrix.java == 'temurin@11'
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ inThisBuild(
)
),
crossScalaVersions := Seq(Scala212, Scala213, Scala3),
githubWorkflowJavaVersions ++= Seq(JavaSpec.temurin("11"), JavaSpec.temurin("17")),
githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11"), JavaSpec.temurin("17")),
githubWorkflowPublishTargetBranches := Seq(),
githubWorkflowBuildPreamble := Seq(
WorkflowStep.Sbt(
Expand Down
2 changes: 1 addition & 1 deletion project/Dep.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ object Dep {

object V {
val zio = "2.0.22"
val zioSchema = "1.2.2"
val zioSchema = "1.4.1"
val arrow = "15.0.2"
val scalaCollectionCompat = "2.12.0"
}
Expand Down

0 comments on commit 1a28b7c

Please sign in to comment.