Log jdk version #2

This commit is contained in:
Marko Frankovic 2025-03-20 09:26:42 +01:00
parent af5f6f6e57
commit 952c9dc6ef

View File

@ -29,10 +29,14 @@ jobs:
with:
maven-version: '3.9.9'
- name: Print JDK version
run: |
echo "Installing JDK version: $JAVA_VERSION"
env:
JAVA_VERSION: ${{ secrets.JAVA_VERSION }}
- name: Set up JDK
uses: actions/setup-java@v4
run: |
echo "Installing JDK version: ${{ secrets.JAVA_VERSION }}"
with:
java-version: '${{ secrets.JAVA_VERSION }}'
distribution: 'corretto'