fix(ci): target the golang runner, generic docker runner retired
Build / Build and push image (push) Successful in 1m20s
CI / Test, vet, build (push) Successful in 2m17s

This commit is contained in:
Story Crater Bot
2026-08-21 16:53:05 -07:00
parent fb1a97e8d0
commit 0aaf4116f1
2 changed files with 8 additions and 3 deletions
+5 -1
View File
@@ -15,7 +15,11 @@ env:
jobs:
build:
name: Build and push image
runs-on: docker
# golang, not a retired generic "docker" runner -- this repo is Go, and
# every runner now carries its own dind sidecar to build/push that
# repo's images. `container.image` below overrides the runner's own
# default (golang:1.25-bookworm) with docker:27-cli for this job only.
runs-on: golang
container:
image: docker:27-cli
# No `options: --network host` here -- act_runner ignores that per-job