Fix Docker CI: upgrade action versions to resolve push scope failure#249
Merged
Conversation
- push_master.yml: add actions/checkout@v4, upgrade docker actions (setup-qemu v2→v3, setup-buildx v2→v3, login v2→v3, build-push v3→v6), add context: . - release.yml: add actions/checkout@v4, upgrade docker actions (setup-qemu v1→v3, setup-buildx v1→v3, login v1→v3, build-push v2→v6), add context: ., fix deprecated set-output syntax
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job 'docker'
Fix Docker CI: upgrade action versions to resolve push scope failure
Jul 2, 2026
Marketen
approved these changes
Jul 2, 2026
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.
The
dockerCI job was failing at push time withinsufficient_scope: authorization failedfrom Docker Hub. This happens when older Docker action versions (login-action@v2,build-push-action@v3) are used with Docker Hub's Fine-Grained Personal Access Tokens (FGPATs), which require proper OAuth scope negotiation that only newer action versions support.push_master.ymlactions/checkout@v4(required for local build context with newer build-push-action)docker/login-actionv2 → v3 — fixes FGPAT scope negotiation (root fix)docker/build-push-actionv3 → v6 — fixes auth token handling at push time (root fix)docker/setup-qemu-actionv2 → v3,docker/setup-buildx-actionv2 → v3context: .release.ymlactions/checkout@v4##[set-output name=...;]syntax withecho "..." >> $GITHUB_OUTPUT