Skip to content

Commit d314dd8

Browse files
Fix website publishing (#740)
* Bump website release java version to 11, for mdoc Mdoc had to switch to Java 11+
1 parent 10e9f08 commit d314dd8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ jobs:
103103
- uses: actions/setup-java@v3
104104
with:
105105
distribution: "temurin"
106-
java-version: 17
106+
java-version: 11
107107
cache: "sbt"
108108

109-
- run: sbt checkAll
109+
- run: sbt --client checkAll
110110

111111
- name: Run sample benchmarks
112-
run: sbt 'bench/Jmh/run -i 1 -f1 -t1 -foe true'
112+
run: sbt --client 'bench/Jmh/run -i 1 -f1 -t1 -foe true'
113113

114114

115115
maven:

.github/workflows/mdoc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/setup-java@v3
1414
with:
1515
distribution: 'temurin'
16-
java-version: 8
16+
java-version: 11
1717
cache: 'sbt'
1818
- run: sbt docs/docusaurusPublishGhpages
1919
env:

0 commit comments

Comments
 (0)