All checks were successful
Build and Push Docker Image / build (push) Successful in 3m6s
Gitea's act runner re-clones every referenced GitHub action on every build because it has no action cache. docker/setup-buildx-action alone was taking ~2 minutes to clone before the build even started. buildx is already bundled in gitea/runner-images:ubuntu-latest, so call 'docker buildx build --push' directly with --cache-from/--cache-to pointing at a registry buildcache tag. Keeps the layer caching benefit, skips the action-clone tax entirely.