From e70ddf26caf8f93128a80c65fe09b99436edc3e3 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 3142a2d37c023cc40a2835bd25b82b1b54c67320 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 57dec83e42435097d6e9462fb0696aa18fb16dce 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