We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 070ace8 commit 5c99ecfCopy full SHA for 5c99ecf
1 file changed
.github/workflows/maven.yml
@@ -6,7 +6,7 @@ jobs:
6
strategy:
7
matrix:
8
# Use these Java versions
9
- java: [17, 21]
+ java: [21, 24]
10
# and run on both Linux and Windows
11
os: [ubuntu-latest, windows-latest]
12
runs-on: ${{ matrix.os }}
@@ -21,7 +21,7 @@ jobs:
21
run: mvn clean install
22
- name: Upload artifact
23
uses: actions/upload-artifact@v4
24
- if: ${{ matrix.java == 17 && matrix.os == 'ubuntu-latest' }}
+ if: ${{ matrix.java == 24 && matrix.os == 'ubuntu-latest' }}
25
with:
26
name: standalone-jar
27
path: target/ArrayV-*.jar
0 commit comments