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 a0089bd commit 2d1e2bcCopy full SHA for 2d1e2bc
.github/workflows/build.yml
@@ -6,7 +6,7 @@ jobs:
6
strategy:
7
matrix:
8
# Use these Java versions
9
- java: [17]
+ java: [21]
10
# and run on both Linux and Windows
11
os: [ubuntu-20.04, windows-latest]
12
runs-on: ${{ matrix.os }}
@@ -25,7 +25,7 @@ jobs:
25
- name: build
26
run: ./gradlew build
27
- name: capture build artifacts
28
- if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS
+ if: ${{ runner.os == 'Linux' && matrix.java == '21' }} # Only upload artifacts built from latest java on one OS
29
uses: actions/upload-artifact@v2
30
with:
31
name: Artifacts
0 commit comments