Skip to content

Commit aedc9be

Browse files
committed
github actions: install jvm 11
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`
1 parent f513e5b commit aedc9be

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/integration-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ jobs:
2424

2525
steps:
2626
- uses: actions/checkout@v3
27+
- uses: actions/setup-java@v4
28+
with:
29+
distribution: 'temurin'
30+
java-version: '11'
2731
- name: setup pyenv ${{ matrix.python-version }}
2832
uses: "gabrielfalcao/pyenv-action@v16"
2933
with:

0 commit comments

Comments
 (0)