Skip to content

Commit 9f63dd9

Browse files
committedJun 27, 2024
Update to Java 11
1 parent 5a872d8 commit 9f63dd9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed
 

‎.github/workflows/bowtie.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: coursier/cache-action@v6
2020
- uses: coursier/setup-action@v1
2121
with:
22-
jvm: adopt:8
22+
jvm: zulu:11.0.10
2323
apps: sbt scala
2424
- name: Build Docker image
2525
env:

‎.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: coursier/cache-action@v6
1818
- uses: coursier/setup-action@v1
1919
with:
20-
jvm: adopt:8
20+
jvm: zulu:11.0.10
2121
apps: sbt scala
2222
- name: dynver check
2323
run: sbt dynverAssertVersion
@@ -74,7 +74,7 @@ jobs:
7474
run: echo "SOURCE_DATE_EPOCH=$(date -d $(parse-changelog CHANGELOG.md -t | rev | cut -d' ' -f1 | rev) '+%s')" >> "$GITHUB_ENV"
7575
- uses: coursier/setup-action@v1
7676
with:
77-
jvm: adopt:8
77+
jvm: zulu:11.0.10
7878
apps: sbt scala
7979
- name: Assemble
8080
env:
@@ -101,7 +101,7 @@ jobs:
101101
uses: coursier/cache-action@v6
102102
- uses: coursier/setup-action@v1
103103
with:
104-
jvm: adopt:8
104+
jvm: zulu:11.0.10
105105
apps: sbt scala
106106
- name: Publish site
107107
env:

‎.github/workflows/fuzz.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: coursier/cache-action@v6
1313
- uses: coursier/setup-action@v1
1414
with:
15-
jvm: adopt:8
15+
jvm: zulu:11.0.10
1616
apps: sbt scala
1717
- name: Build JAR
1818
env:

‎build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ lazy val root = (project in file("."))
119119
protobuf,
120120
snappyJava,
121121
),
122-
javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
122+
javacOptions ++= Seq("-source", "11", "-target", "11"),
123123
scalacOptions ++= nonConsoleCompilerOptions,
124124
buildInfoKeys := Seq[BuildInfoKey](version),
125125
buildInfoPackage := "io.github.dataunitylab.jsonoid.discovery"
@@ -173,7 +173,7 @@ enablePlugins(JavaAppPackaging)
173173
enablePlugins(SiteScaladocPlugin)
174174

175175
dockerEntrypoint := Seq("/opt/docker/bin/discover-schema")
176-
dockerBaseImage := "azul/zulu-openjdk:8-jre"
176+
dockerBaseImage := "azul/zulu-openjdk:11-jre"
177177

178178
gitHubPagesOrgName := "dataunitylab"
179179
gitHubPagesRepoName := "jsonoid-discovery"

0 commit comments

Comments
 (0)
Please sign in to comment.