Pin Docker GitHub Actions to Apache approved SHAs#13753
Merged
Conversation
Replace version tags with SHA pins from Apache infrastructure-actions approved_patterns.yml to comply with the enterprise action allow list. - docker/login-action: v3/v1.10.0 → c94ce9fb... - docker/setup-buildx-action: v3 → 8d2750c6... - docker/setup-qemu-action: v3 → 29109295...
kezhenxu94
previously approved these changes
Mar 21, 2026
.claude/skills/ci-e2e-debug/SKILL.md
Outdated
Comment on lines
+37
to
+43
| ## Fixing "action is not allowed" errors | ||
|
|
||
| If a CI run or PR is blocked because a GitHub Action is not on the Apache allow list: | ||
|
|
||
| 1. **Check the approved list**: https://github.com/apache/infrastructure-actions/blob/main/approved_patterns.yml | ||
| 2. **Update the workflow**: Replace the version tag (e.g., `@v3`) with the approved SHA pin from the list. | ||
| 3. Actions owned by `actions/*`, `github/*`, and `apache/*` are always allowed (enterprise-owned) and don't need SHA pins. |
Member
There was a problem hiding this comment.
This is duplicate to the content in CLAUDE.md in root folder, as CLAUDE.md in the root folder will always be loaded, this section here doesn't do much than spending some tokens.
The frontend was dropping 312K+ spans due to maxQueueSize reached, likely caused by memory pressure from the 200M limit on Node.js. The productcatalogservice had only 20M which is very tight for a Go service with gRPC + OTLP export. Also remove duplicate GitHub Actions allow list section from ci-e2e-debug skill per review comment (already in CLAUDE.md).
kezhenxu94
approved these changes
Mar 22, 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 Docker actions blocked by Apache enterprise action allow list
Apache enforces an allow list for third-party GitHub Actions via infrastructure-actions/approved_patterns.yml. Docker actions using version tags (e.g.,
@v3) are not on the list and will be blocked.This PR pins all Docker actions to the approved SHA commits:
docker/login-action@v3/@v1.10.0@c94ce9fb468520275223c153574b00df6fe4bcc9docker/setup-buildx-action@v3@8d2750c68a42422c14e847fe6c8ac0403b4cbd6fdocker/setup-qemu-action@v3@29109295f81e9208d7d86ff1c6c12d2833863392CHANGESlog.