Fix publish-docker startup_failure: use ASF-approved docker/login-action SHA#231
Merged
Merged
Conversation
…ion SHA The pinned docker/login-action SHA c94ce9fb... (set in #229) is not on the ASF GitHub Actions allow-list, so the publish-docker workflow — which only runs on push to master, hence never exercised by a PR — fails at startup_failure on every master push. Switch to 650006c6...(v4.2.0), which is on the approved list and is the SHA apache/skywalking, skywalking-banyandb and skywalking-infra-e2e all use.
wankai123
approved these changes
Jun 23, 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.
Fix the
publish-dockerworkflowstartup_failureon master pushpublish-docker.yamlpinneddocker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9(set in #229). That SHA is not on the ASF GitHub Actions allow-list, so the workflow is rejected atstartup_failurebefore any job runs.Because
publish-dockertriggers only onpush: branches: [master], no PR ever exercises it — so #229's bad SHA passed PR CI and only failed post-merge (e.g. https://github.com/apache/skywalking-cli/actions/runs/28028423025).Switch to
docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee(v4.2.0), which is on the approved list and is the exact SHAapache/skywalking,apache/skywalking-banyandb, andapache/skywalking-infra-e2eall use. It's the only third-party action in any cli workflow.