diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2a0ae3d..e405772 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [ 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ] + java: [ 8, 9, 11, 12, 13, 14, 15, 16, 17 ] steps: - name: Checkout source code uses: actions/checkout@v3 @@ -26,7 +26,7 @@ jobs: run: mvn -B package --file pom.xml - run: mkdir artifacts && cp target/*.jar artifacts - name: Upload Maven build artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: build-java-${{ matrix.java }}.jar path: artifacts @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [ 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ] + java: [ 8, 9, 11, 12, 13, 14, 15, 16, 17 ] steps: - name: Checkout the repository uses: actions/checkout@v3