chore: update GitHub Actions workflows for UBI 9 and UBI 10 images#250
chore: update GitHub Actions workflows for UBI 9 and UBI 10 images#250prabhuk25 wants to merge 3 commits intodevfile:mainfrom
Conversation
|
Hey Team, |
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 54 minutes and 50 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (5)
📝 WalkthroughWalkthroughReplaced manual multi-arch Docker manifest assembly (docker manifest create/annotate/push) with Changes
Sequence Diagram(s)sequenceDiagram
rect rgba(220,240,255,0.5)
participant GH as GitHub Actions Runner
end
rect rgba(255,240,220,0.5)
participant BX as docker buildx / imagetools
end
rect rgba(240,255,220,0.5)
participant REG as Container Registry
end
GH->>REG: (prebuilt) push per-arch images (`amd64`, `arm64`, `ppc64le`)
GH->>BX: run `imagetools create -t <multi-tag> <amd64> <arm64> <ppc64le>`
BX->>REG: assemble multi-arch manifest referencing per-arch images
BX->>GH: return manifest digest
GH->>BX: `imagetools inspect <multi-tag>` (verify)
BX->>GH: inspection / metadata output
Estimated code review effort🎯 4 (Complex) | ⏱️ ~45 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Warning Review ran into problems🔥 ProblemsTimed out fetching pipeline failures after 30000ms Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
.github/workflows/ubi10-build.yaml (1)
16-18:⚠️ Potential issue | 🟠 MajorFix the reusable workflow output mapping.
Line 18 references an invalid path. The
publish-udijob exposesuniq_tagdirectly (Line 153), not as a nested property undersetTagName. Callers of this reusable workflow will receive an empty value foruniq_tag.Suggested fix
outputs: uniq_tag: description: "The unique tag for the universal developer image" - value: ${{ jobs.publish-udi.outputs.setTagName.uniq_tag }} + value: ${{ jobs.publish-udi.outputs.uniq_tag }}🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In @.github/workflows/ubi10-build.yaml around lines 16 - 18, The reusable workflow output mapping is using an invalid path; change the mapping for uniq_tag to reference the output exposed by the publish-udi job directly (use jobs.publish-udi.outputs.uniq_tag) instead of the nested setTagName property so callers receive the actual uniq_tag value from the publish-udi job; locate the output mapping that defines uniq_tag and replace the current value expression with the direct jobs.publish-udi.outputs.uniq_tag reference.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Outside diff comments:
In @.github/workflows/ubi10-build.yaml:
- Around line 16-18: The reusable workflow output mapping is using an invalid
path; change the mapping for uniq_tag to reference the output exposed by the
publish-udi job directly (use jobs.publish-udi.outputs.uniq_tag) instead of the
nested setTagName property so callers receive the actual uniq_tag value from the
publish-udi job; locate the output mapping that defines uniq_tag and replace the
current value expression with the direct jobs.publish-udi.outputs.uniq_tag
reference.
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: 531fb305-7b98-40ae-85ca-5a2b5184e56a
📒 Files selected for processing (5)
.github/workflows/pr-check-ubi10.yaml.github/workflows/pr-check.yaml.github/workflows/ubi10-build.yaml.github/workflows/ubi9-build.yamluniversal/ubi10/Dockerfile
Signed-off-by: Prabhu K <Prabhu.K@ibm.com> Signed-off-by: Prabhu K <Prabhu.K@ibm.com>
Signed-off-by: Prabhu K <Prabhu.K@ibm.com>
…bm.com> Signed-off-by: Prabhu K <Prabhu.K@ibm.com>
3d417a4 to
9dc300e
Compare
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: prabhuk25, rohanKanojia The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |

Updated GitHub Actions workflows for UBI 9 and UBI 10 developer images.
Changes include:
Summary by CodeRabbit