Skip to content

Commit 1a28b7c

Browse files
Update zio-schema, zio-schema-derivation to 1.4.1 (#106)
* Update zio-schema, zio-schema-derivation to 1.4.1 * Remove java 8 from CI --------- Co-authored-by: Michael Nedokushev <grouzen.hexy@gmail.com>
1 parent 487f472 commit 1a28b7c

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,14 @@ jobs:
2323
matrix:
2424
os: [ubuntu-latest]
2525
scala: [2.12.19, 2.13.14, 3.3.3]
26-
java: [zulu@8, temurin@11, temurin@17]
26+
java: [temurin@11, temurin@17]
2727
runs-on: ${{ matrix.os }}
2828
steps:
2929
- name: Checkout current branch (full)
3030
uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333

34-
- name: Setup Java (zulu@8)
35-
if: matrix.java == 'zulu@8'
36-
uses: actions/setup-java@v4
37-
with:
38-
distribution: zulu
39-
java-version: 8
40-
cache: sbt
41-
4234
- name: Setup Java (temurin@11)
4335
if: matrix.java == 'temurin@11'
4436
uses: actions/setup-java@v4

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ inThisBuild(
2121
)
2222
),
2323
crossScalaVersions := Seq(Scala212, Scala213, Scala3),
24-
githubWorkflowJavaVersions ++= Seq(JavaSpec.temurin("11"), JavaSpec.temurin("17")),
24+
githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11"), JavaSpec.temurin("17")),
2525
githubWorkflowPublishTargetBranches := Seq(),
2626
githubWorkflowBuildPreamble := Seq(
2727
WorkflowStep.Sbt(

project/Dep.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ object Dep {
44

55
object V {
66
val zio = "2.0.22"
7-
val zioSchema = "1.2.2"
7+
val zioSchema = "1.4.1"
88
val arrow = "15.0.2"
99
val scalaCollectionCompat = "2.12.0"
1010
}

0 commit comments

Comments
 (0)