Skip to content

Commit 53b0d66

Browse files
committed
Update actions
1 parent 40d2efb commit 53b0d66

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/push.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
matrix:
2626
pyVersion: [ '3.10', '3.11', '3.12' ]
2727
# Ubuntu latest no longer installs Python 3.9 by default so install it
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout
3131
uses: actions/[email protected]
@@ -43,6 +43,12 @@ jobs:
4343
# restore-keys: |
4444
# ${{ runner.os }}-go-
4545

46+
- name: Set up JDK 17
47+
uses: actions/setup-java@v4
48+
with:
49+
distribution: 'temurin' # Can also use 'zulu', 'adopt', etc.
50+
java-version: '17'
51+
4652
- name: Get Java version
4753
run: java -version
4854

0 commit comments

Comments
 (0)