ci: try ubuntu-latest runner (bundles docker CLI)
Some checks failed
Deploy / deploy (push) Failing after 11s
Some checks failed
Deploy / deploy (push) Failing after 11s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
179f7961b8
commit
79e14ea87d
1 changed files with 4 additions and 3 deletions
|
|
@ -8,9 +8,10 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
# `docker` runner => node:22-bookworm image WITH the Docker socket available,
|
# `ubuntu-latest` => catthehacker/ubuntu:act-22.04, which bundles the docker
|
||||||
# so `docker build` / `docker run` control the host's Docker daemon.
|
# CLI. NOTE: it still needs the runner to mount /var/run/docker.sock for the
|
||||||
runs-on: docker
|
# daemon to be reachable — the image alone doesn't provide that.
|
||||||
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue