Hithomelabs/CFTunnels#122: replace actions/setup-java@v4 with Alpine-native JDK install for ci-runner container

This commit is contained in:
Dave the Dev 2026-07-05 06:53:38 +00:00 committed by hitanshu
parent fa714ef498
commit 793e866cb4

View File

@ -36,11 +36,10 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: JDK setup - name: Install JDK (Alpine package)
uses: actions/setup-java@v4 run: |
with: apk add --no-cache openjdk17-jdk
distribution: 'zulu' echo "JAVA_HOME=/usr/lib/jvm/java-17-openjdk" >> "$GITHUB_ENV"
java-version: '17'
- name: Validate Gradle Wrapper - name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3 uses: gradle/actions/wrapper-validation@v3
- name: Create and push tag - name: Create and push tag