Skip to content

Commit 7fa0a27

Browse files
committed
chore: explicitly state we should use java 8 in github action
1 parent c87a744 commit 7fa0a27

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/prepare-release.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ jobs:
1818
steps:
1919
- name: Check out code
2020
uses: actions/checkout@v4
21-
21+
- name: Set up JDK 8
22+
uses: actions/setup-java@v3
23+
with:
24+
java-version: '8'
25+
distribution: 'temurin' # or 'adopt'
2226
- name: Check input
2327
run: |
2428
echo '* input project: "${{ github.event.inputs.project }}"'

0 commit comments

Comments
 (0)