Skip to content

Commit

Permalink
Don't build on Java versions prior to 17 on GitHub due to Spring Boot…
Browse files Browse the repository at this point in the history
… requirements.
  • Loading branch information
tkgregory committed Feb 16, 2024
1 parent c0d070c commit 03edff8
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,12 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 11, 17 ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java-version }}
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java-version }}
java-version: 17
distribution: 'adopt'
cache: gradle
- name: Grant execute permission for gradlew
Expand Down

0 comments on commit 03edff8

Please sign in to comment.