From 02736e43f74339170aa4299b83bb0d87021f3918 Mon Sep 17 00:00:00 2001 From: Dave the Dev Date: Sun, 5 Jul 2026 06:47:09 +0000 Subject: [PATCH 1/3] Hithomelabs/CFTunnels#69: promote custom slim runner image (ci-runner:1.0.0) in test_image_build_push.yml --- .gitea/workflows/test_image_build_push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test_image_build_push.yml b/.gitea/workflows/test_image_build_push.yml index 2cf9344..e8b7752 100644 --- a/.gitea/workflows/test_image_build_push.yml +++ b/.gitea/workflows/test_image_build_push.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest needs: tag container: - image: catthehacker/ubuntu:act-latest + image: 192.168.0.100:8928/hithomelabs/ci-runner:1.0.0 steps: - name: Check out repository code uses: actions/checkout@v4 -- 2.45.2 From fa714ef498abbd3ef226519677a2dc5ce7e8916b Mon Sep 17 00:00:00 2001 From: Dave the Dev Date: Sun, 5 Jul 2026 06:47:17 +0000 Subject: [PATCH 2/3] Hithomelabs/CFTunnels#69: promote custom slim runner image (ci-runner:1.0.0) in prod_image_tag_promote.yaml --- .gitea/workflows/prod_image_tag_promote.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/prod_image_tag_promote.yaml b/.gitea/workflows/prod_image_tag_promote.yaml index a2a2a16..6226ea5 100644 --- a/.gitea/workflows/prod_image_tag_promote.yaml +++ b/.gitea/workflows/prod_image_tag_promote.yaml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest needs: tag container: - image: catthehacker/ubuntu:act-latest + image: 192.168.0.100:8928/hithomelabs/ci-runner:1.0.0 steps: - name: Check out repository code uses: actions/checkout@v4 -- 2.45.2 From 32083f6cebe617159ee0d865f5e5075b60586333 Mon Sep 17 00:00:00 2001 From: Dave the Dev Date: Sun, 5 Jul 2026 06:53:38 +0000 Subject: [PATCH 3/3] Hithomelabs/CFTunnels#122: replace actions/setup-java@v4 with Alpine-native JDK install for ci-runner container --- .gitea/workflows/test_image_build_push.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/test_image_build_push.yml b/.gitea/workflows/test_image_build_push.yml index e8b7752..3d0178c 100644 --- a/.gitea/workflows/test_image_build_push.yml +++ b/.gitea/workflows/test_image_build_push.yml @@ -36,11 +36,10 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - - name: JDK setup - uses: actions/setup-java@v4 - with: - distribution: 'zulu' - java-version: '17' + - name: Install JDK (Alpine package) + run: | + apk add --no-cache openjdk17-jdk + echo "JAVA_HOME=/usr/lib/jvm/java-17-openjdk" >> "$GITHUB_ENV" - name: Validate Gradle Wrapper uses: gradle/actions/wrapper-validation@v3 - name: Create and push tag -- 2.45.2