feat!: upgrade Docker actions and drop buildx_install input - #7
Merged
Conversation
Bump docker/build-push-action v6->v7, docker/metadata-action v5->v6, docker/setup-qemu-action v3->v4, and docker/setup-buildx-action v3->v4 in action.yml. In the release workflow, bump actions/checkout v4->v7 and replace disabled codfish with SHA-pinned cycjimmy/semantic-release-action@v6.0.0. BREAKING CHANGE: removed the buildx_install input. docker/setup-buildx-action v4 removed its install input, so the composite no longer exposes buildx_install; the docker build -> docker buildx build alias it enabled is gone. Use the BUILDX_BUILDER env var if that behavior is needed. Claude-Session: https://claude.ai/code/session_011T9ASy4VmRoYrnuTsLd9oU
hisco
force-pushed
the
chore/upgrade-actions
branch
from
July 1, 2026 14:44
8f8e997 to
292833c
Compare
|
🎉 This PR is included in version 2.0.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Upgrades pinned GitHub Actions dependencies across workflows and the composite action.
Changes
actions/checkoutv4 -> v7 in all workflow files.codfish/semantic-release-action@v4withcycjimmy/semantic-release-action@v6.0.0(pinned to commit SHA). Replaced because codfish was disabled by GitHub after a supply-chain compromise so its tags no longer resolve; cycjimmy is the maintained standard replacement.docker/build-push-actionv6 -> v7.docker/metadata-actionv5 -> v6.docker/setup-qemu-actionv3 -> v4.docker/setup-buildx-actionv3 -> v4 (both steps).setup-buildx v4 migration:
installinput removeddocker/setup-buildx-action@v4removed theinstallinput. To avoid a dangling unknown-input warning and silently dropped behavior, the composite'sbuildx_installplumbing was fully removed:install: ${{ inputs.buildx_install || 'false' }}mapping in the setup-buildx step.buildx_installinput declaration fromaction.yml.inputs.buildx_installfrom both setup-buildxif:guards.buildx_installrow/mentions fromREADME.md.buildx_install: truefrom the test workflow.https://claude.ai/code/session_011T9ASy4VmRoYrnuTsLd9oU
Note
Medium Risk
Major version bumps on Docker build/metadata/setup actions and a breaking public input removal can change CI/build behavior for consumers still using
buildx_install.Overview
Upgrades pinned GitHub Actions across workflows and the composite action, and adds weekly Dependabot grouping for
github-actionsupdates.Workflows move
actions/checkoutv4 → v7. Release replacescodfish/semantic-release-actionwithcycjimmy/semantic-release-actionv6 (commit-pinned), usingextra_pluginsforsemantic-release-github-actions-tagsinstead ofadditional-packages.The composite bumps
docker/setup-qemu-actionv3 → v4,docker/setup-buildx-actionv3 → v4,docker/metadata-actionv5 → v6, anddocker/build-push-actionv6 → v7.Breaking:
buildx_installis removed end-to-end becausesetup-buildx-action@v4dropped theinstallinput—no mapping inaction.yml,buildx_installdropped from setup-buildxifguards, README/docs/examples cleaned up, and the test workflow no longer passesbuildx_install: true.Reviewed by Cursor Bugbot for commit 9361878. Bugbot is set up for automated code reviews on this repo. Configure here.