Skip to content

Commit

Permalink
Attempt to set default java version
Browse files Browse the repository at this point in the history
  • Loading branch information
axmetishe committed Feb 9, 2024
1 parent a6f2926 commit 25e717b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
os: [ ubuntu-latest, windows-latest, macos-13 ]
steps:

- name: Checkout
Expand All @@ -29,11 +29,11 @@ jobs:
- id: platform
uses: ASzc/change-string-case-action@v6
with:
string: ${{ RUNNER_OS }}
string: ${{ runner.os }}

- name: Run build with Gradle Wrapper
env:
JAVA_HOME: ${{ JAVA_HOME_17_X64 }}
JAVA_HOME: ${{ env.JAVA_HOME_17_X64 }}
run: ./gradlew build

- name: Test application
Expand Down

0 comments on commit 25e717b

Please sign in to comment.