Skip to content

Commit

Permalink
Use Java 17 on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JCash committed Jul 1, 2023
1 parent 82e0b73 commit ad1c5dd
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/bob.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ jobs:
name: Build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
java-version: '16.0.1'
java-version: '17.0.5+8'
architecture: x64
distribution: 'temurin'

- name: Install dependencies
run: sudo apt-get install -y libopenal-dev libgl1-mesa-dev libglw1-mesa-dev freeglut3-dev
Expand Down Expand Up @@ -59,9 +61,11 @@ jobs:
name: Build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
java-version: '16.0.1'
java-version: '17.0.5+8'
architecture: x64
distribution: 'temurin'

- name: Get Defold version
run: |
Expand Down Expand Up @@ -100,9 +104,11 @@ jobs:
name: Build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
java-version: '16.0.1'
java-version: '17.0.5+8'
architecture: x64
distribution: 'temurin'

- name: Get Defold version
run: |
Expand Down

0 comments on commit ad1c5dd

Please sign in to comment.