Compare commits

..

3 Commits

Author SHA1 Message Date
32083f6ceb Hithomelabs/CFTunnels#122: replace actions/setup-java@v4 with Alpine-native JDK install for ci-runner container
All checks were successful
sample gradle build and test / tag (push) Successful in 6s
sample gradle build and test / build_tag_push (push) Successful in 3m29s
Promote image with tag test to prod / tag (push) Successful in 9s
Promote image with tag test to prod / build_tag_push (push) Successful in 16s
Daily cloudflare API integration test / cloudflare-api-test (push) Successful in 1m48s
2026-07-05 07:00:11 +00:00
fa714ef498 Hithomelabs/CFTunnels#69: promote custom slim runner image (ci-runner:1.0.0) in prod_image_tag_promote.yaml 2026-07-05 07:00:11 +00:00
02736e43f7 Hithomelabs/CFTunnels#69: promote custom slim runner image (ci-runner:1.0.0) in test_image_build_push.yml 2026-07-05 07:00:11 +00:00
2 changed files with 6 additions and 7 deletions

View File

@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: tag needs: tag
container: container:
image: catthehacker/ubuntu:act-latest image: 192.168.0.100:8928/hithomelabs/ci-runner:1.0.0
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4

View File

@ -30,17 +30,16 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: tag needs: tag
container: container:
image: catthehacker/ubuntu:act-latest image: 192.168.0.100:8928/hithomelabs/ci-runner:1.0.0
steps: steps:
- name: Check out repository code - name: Check out repository code
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