fix act-runner: mount docker socket into job containers
Some checks failed
CI / lint-test (push) Failing after 0s
Deploy / build (push) Failing after 0s
Deploy / scan (push) Has been skipped
Deploy / report-vulns (push) Has been skipped

Job containers need Docker socket to run docker/build-push-action
and docker/setup-buildx-action. Pass -v /var/run/docker.sock via
container.options in act_runner config.
This commit is contained in:
kert
2026-03-23 22:03:08 -04:00
parent 4af8783356
commit 4e1524caed

View File

@@ -9,5 +9,8 @@ runner:
container:
network: "ci"
privileged: true
options: ""
docker_host: unix:///var/run/docker.sock
valid_volumes:
- /var/run/docker.sock
options: "-v /var/run/docker.sock:/var/run/docker.sock"
workdir_parent: ""