Skip to content

Commit d87e22b

Browse files
fix: java setup for build job (#478)
### Description Build job for certain TAs requires newer Java. ### Checklist - [ ] `README.md` has been updated or is not required - [ ] push trigger tests - [ ] manual release test - [ ] automated releases test - [ ] pull request trigger tests - [ ] schedule trigger tests - [ ] workflow errors/warnings reviewed and addressed ### Testing done https://github.com/splunk/splunk-dbx-add-on-for-weaviate/actions/runs/23184277927
1 parent e98f0b2 commit d87e22b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/reusable-build-test-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,10 @@ jobs:
599599
uses: actions/setup-python@v5
600600
with:
601601
python-version: ${{ env.PYTHON_VERSION }}
602+
- uses: actions/setup-java@v5
603+
with:
604+
distribution: 'temurin'
605+
java-version: '17'
602606
- name: create requirements file for pip
603607
run: |
604608
git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com

0 commit comments

Comments
 (0)