Skip to content

Commit

Permalink
[GitHub] Use Java 17 for the Android workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Aug 9, 2023
1 parent 9d5391f commit f6ae1de
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/android-opengl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: '17'
- name: Get DLC
run: ./get_dlc
- name: Get Node.js
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/android-vulkan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: '17'
- name: Get DLC
run: ./get_dlc
- name: Get Node.js
Expand Down

0 comments on commit f6ae1de

Please sign in to comment.