Skip to content

Stabilize merge-ts release job by removing unnecessary BuildKit bootstrap#66

Merged
thirtytwobits merged 2 commits into
mainfrom
copilot/fix-merge-ts-job-failure
Jul 26, 2026
Merged

Stabilize merge-ts release job by removing unnecessary BuildKit bootstrap#66
thirtytwobits merged 2 commits into
mainfrom
copilot/fix-merge-ts-job-failure

Conversation

Copilot AI commented Jul 26, 2026

Copy link
Copy Markdown
Contributor

merge-ts was failing in Actions due to intermittent timeouts pulling moby/buildkit:buildx-stable-1 during docker/setup-buildx-action. The job only performs manifest assembly/inspection, so this external BuildKit bootstrap dependency was unnecessary.

  • Root cause

    • merge-ts invoked docker/setup-buildx-action@v3, which bootstraps BuildKit by pulling from Docker Hub; this pull timed out and failed the job.
  • Change

    • Removed the Set up Docker Buildx step from merge-ts in .github/workflows/toolshed.yml.
    • Kept existing digest download, metadata generation, GHCR login, manifest creation, and manifest inspection unchanged.
  • Behavioral impact

    • merge-ts no longer depends on Docker Hub availability for BuildKit bootstrap.
    • Manifest publishing path remains the same, with reduced network-flake surface.
merge-ts:
  steps:
    - name: Download digests
      uses: actions/download-artifact@v4
    # removed: docker/setup-buildx-action@v3
    - name: Docker meta
      uses: docker/metadata-action@v5
    - name: Create manifest list and push
      run: docker buildx imagetools create ...

Copilot AI changed the title [WIP] Fix failing GitHub Actions job merge-ts Stabilize merge-ts release job by removing unnecessary BuildKit bootstrap Jul 26, 2026
Copilot AI requested a review from thirtytwobits July 26, 2026 04:22

@thirtytwobits thirtytwobits left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

making release pipeline a bit more stable

@thirtytwobits
thirtytwobits marked this pull request as ready for review July 26, 2026 04:25
@thirtytwobits
thirtytwobits merged commit 192773d into main Jul 26, 2026
6 checks passed
@thirtytwobits
thirtytwobits deleted the copilot/fix-merge-ts-job-failure branch July 26, 2026 04:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants