Skip to content

Commit 08209f5

Browse files
authored
Fix upload-docs workflow (#438)
1 parent 25f377c commit 08209f5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/upload-docs.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,16 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Set up JDK 1.8
23+
uses: sdkman/sdkman-action@master
24+
id: sdkman
25+
with:
26+
candidate: java
27+
version: '8.0.332-tem'
28+
- name: Set up 8.0.332-tem
2329
uses: actions/setup-java@v1
2430
with:
25-
java-version: 8.0.332-tem
31+
java-version: 8
32+
jdkFile: ${{ steps.sdkman.outputs.file }}
2633
- uses: actions/cache@v1
2734
with:
2835
path: ~/.m2/repository

0 commit comments

Comments
 (0)