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.
2 parents 4426baf + 62b2c79 commit 8b7350fCopy full SHA for 8b7350f
.github/workflows/build.yml
@@ -13,20 +13,16 @@ jobs:
13
14
steps:
15
- name: Checkout
16
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
17
18
- name: Set up JDK 1.8
19
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v4
20
with:
21
- java-version: 1.8
+ distribution: temurin
22
+ java-version: 8
23
+ cache: sbt
24
- - name: Cache SBT
- uses: actions/cache@v2
25
- with:
26
- path: |
27
- ~/.ivy2/cache
28
- ~/.sbt
29
- key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt', '**/plugins.sbt') }}
+ - uses: sbt/setup-sbt@v1
30
31
- name: Run tests
32
run: sbt test mdoc
0 commit comments