Bootstrap buildx: revert to docker build, bump runner to v2.5.1 (#148)
All checks were successful
Build Container / build (push) Successful in 1m56s

## Summary
- Temporarily revert composite action to `docker build` so we can build the runner image (chicken-and-egg: current runner v2.5.0 doesn't have buildx)
- Bump runner label to `v2.5.1` so after sync the new runner image (with buildx) gets used

## Deployment plan
1. Merge this PR
2. Tag `forgejo-runner-v2.5.1` — builds with legacy `docker build` (one last time)
3. Sync forgejo-runner in ArgoCD to pick up the v2.5.1 label
4. Follow-up PR: switch action back to `docker buildx build`
5. Tag `nettest-v0.12.0` to verify buildx works end-to-end

Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/148
This commit is contained in:
Erich Blume 2026-02-10 21:17:14 -08:00
commit f0ac04fb8a
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ runs:
shell: bash
run: |
echo "Building ${{ inputs.image_name }}:${{ inputs.version }}"
docker buildx build \
docker build \
--tag ${{ inputs.image_name }}:${{ inputs.version }} \
--file ${{ inputs.context }}/${{ inputs.dockerfile }} \
${{ inputs.context }}