From 176ef777375c2ce192953266e2669eadf6b8e92b Mon Sep 17 00:00:00 2001 From: poslop Date: Tue, 8 Sep 2026 18:57:27 -0500 Subject: [PATCH] CI: run jobs on debian-latest runner image --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 13ccbb9..5304e22 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: [debian-latest] steps: - uses: actions/checkout@v4 @@ -26,7 +26,7 @@ jobs: # build & push image only on tags (releases) if: startsWith(github.ref, 'refs/tags/') needs: test - runs-on: ubuntu-latest + runs-on: [debian-latest] env: # dind sidecar listens on tcp; job containers reach it via the docker bridge gateway DOCKER_HOST: tcp://172.17.0.1:2375