File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 strategy :
77 matrix :
88 # Use these Java versions
9- java : [17, 21 ]
9+ java : [24 ]
1010 # and run on both Linux and Windows
1111 os : [ubuntu-latest, windows-latest]
1212 runs-on : ${{ matrix.os }}
1313 steps :
14- - uses : actions/checkout@v2
14+ - uses : actions/checkout@v4
1515 - name : Set up JDK ${{ matrix.java }}
16- uses : actions/setup-java@v2.1.0
16+ uses : actions/setup-java@v4.7.1
1717 with :
1818 java-version : ${{ matrix.java }}
1919 distribution : zulu
2020 - name : Build with Maven
2121 run : mvn clean install
2222 - name : Upload artifact
23- uses : actions/upload-artifact@v2
24- if : ${{ matrix.java == 17 && matrix.os == 'ubuntu-latest' }}
23+ uses : actions/upload-artifact@v4
24+ if : ${{ matrix.java == 24 && matrix.os == 'ubuntu-latest' }}
2525 with :
2626 name : standalone-jar
27- path : target/ArrayV-*.jar
27+ path : target/ArrayV-*.jar
You can’t perform that action at this time.
0 commit comments