Skip to content

Commit

Permalink
github actions: install jvm 11
Browse files Browse the repository at this point in the history
seems like the github builder ubuntu-latest doesn't have jvm-11
that we need by default anymore, and we need to install java on
our own

this change install it using `actions/setup-java`
  • Loading branch information
fruch committed Dec 17, 2024
1 parent d9747d3 commit 73e3098
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: '11'
- name: setup pyenv ${{ matrix.python-version }}
uses: "gabrielfalcao/pyenv-action@v16"
with:
Expand Down

0 comments on commit 73e3098

Please sign in to comment.