We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82bd3db commit 4cbb91dCopy full SHA for 4cbb91d
.github/workflows/release.yml
@@ -8,20 +8,15 @@ jobs:
8
name: Build release
9
strategy:
10
matrix:
11
- target: [java8, java17]
+ target: java8
12
runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@v2.3.3
15
- - name: Download JDK
16
- run: |
17
- curl --silent -o ${{ runner.temp }}/jdk-17_linux-x64_bin.tar.gz \
18
- https://download.oracle.com/java/17/latest/jdk-17_linux-x64_bin.tar.gz
19
- name: Set up JDK
20
uses: actions/setup-java@v2
21
with:
22
- distribution: jdkfile
23
- jdkFile: ${{ runner.temp }}/jdk-17_linux-x64_bin.tar.gz
24
- java-version: 17
+ distribution: adopt
+ java-version: 8
25
- uses: actions/cache@v2
26
27
path: ~/.m2/repository
0 commit comments