diff options
author | Juuz <6596629+Juuxel@users.noreply.github.com> | 2021-11-16 22:15:48 +0200 |
---|---|---|
committer | Juuz <6596629+Juuxel@users.noreply.github.com> | 2021-11-16 22:15:48 +0200 |
commit | a6b09221be6f4891cc67d7ba0e101d7f82106694 (patch) | |
tree | fc65e86407b6125041592c951c9f280896ffc608 | |
parent | 2fec94624c03b856a02678faf6523cf719546eaf (diff) | |
download | LibGui-a6b09221be6f4891cc67d7ba0e101d7f82106694.tar.gz LibGui-a6b09221be6f4891cc67d7ba0e101d7f82106694.tar.bz2 LibGui-a6b09221be6f4891cc67d7ba0e101d7f82106694.zip |
Run Github Actions on Java 17
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1a71a15..598d1cd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,11 +9,10 @@ jobs: uses: actions/checkout@v2 - name: validate gradle wrapper uses: gradle/wrapper-validation-action@v1 - - name: setup jdk 16 + - name: setup jdk 17 uses: actions/setup-java@v2 with: - distribution: adopt - java-version: 16 + java-version: 17 - name: make gradle wrapper executable if: ${{ runner.os != 'Windows' }} run: chmod +x ./gradlew |