Skip to content

Commit c783dde

Browse files
committed
Only test on 8 and 11
17 brought some weird issues that seem to stem from sbt. We'll look at these later.
1 parent c0cf26c commit c783dde

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
java: [ '8', '11', '17' ]
16+
java: [ '8', '11' ]
1717

1818
steps:
1919
- name: checkout the repo
@@ -43,7 +43,7 @@ jobs:
4343
uses: actions/setup-java@v2
4444
with:
4545
distribution: 'temurin'
46-
java-version: '17'
46+
java-version: '11'
4747

4848
- name: Check Formatting
4949
run: sbt scalafmtCheckAll

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ on:
66
tags: ["*"]
77
jobs:
88
publish:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
1212
with:
1313
fetch-depth: 0
1414
- uses: actions/setup-java@v2
1515
with:
16-
distribution: 'adopt'
16+
distribution: 'temurin'
1717
java-version: '11'
1818
- run: sbt ci-release
1919
env:

0 commit comments

Comments
 (0)