Remove Java 11 build.
One of the Maven plugins we use is compiled for Java 17, and though I still think we should target release 11, I don't think it's a huge risk not to compile _with_ a Java 11 JDK.
This commit is contained in:
@@ -12,7 +12,7 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
java: ['11', '17', '21']
|
||||
java: ['17', '21']
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
@@ -33,7 +33,7 @@ jobs:
|
||||
run: mvn $MAVEN_CLI_OPTS clean verify
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
if: ${{ always() && matrix.java == '11' }}
|
||||
if: ${{ always() && matrix.java == '17' }}
|
||||
with:
|
||||
name: test-results
|
||||
path: 'target/surefire-reports/TEST-*.xml'
|
||||
|
||||
Reference in New Issue
Block a user