We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0cf26c commit c783ddeCopy full SHA for c783dde
.github/workflows/ci.yml
@@ -13,7 +13,7 @@ jobs:
13
runs-on: ubuntu-latest
14
strategy:
15
matrix:
16
- java: [ '8', '11', '17' ]
+ java: [ '8', '11' ]
17
18
steps:
19
- name: checkout the repo
@@ -43,7 +43,7 @@ jobs:
43
uses: actions/setup-java@v2
44
with:
45
distribution: 'temurin'
46
- java-version: '17'
+ java-version: '11'
47
48
- name: Check Formatting
49
run: sbt scalafmtCheckAll
.github/workflows/release.yml
@@ -6,14 +6,14 @@ on:
6
tags: ["*"]
7
jobs:
8
publish:
9
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
10
11
- uses: actions/checkout@v2
12
fetch-depth: 0
- uses: actions/setup-java@v2
- distribution: 'adopt'
+ distribution: 'temurin'
java-version: '11'
- run: sbt ci-release
env:
0 commit comments