Update deprecated ghcr.io image reference to public.ecr.aws - #29
Update deprecated ghcr.io image reference to public.ecr.aws#29luisina-santos wants to merge 1 commit into
Conversation
README.md referenced this connector's image via ghcr.io/conductorone; container images are now published to public.ecr.aws/conductorone instead. Only this connector's own image reference was updated. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
|
|
||
| ``` | ||
| docker run --rm -v $(pwd):/out -e BATON_PARTNER_USER_ID=partnerUserId BATON_PARTNER_USER_SECRET=partnerUserSecret ghcr.io/conductorone/baton-expensify:latest -f "/out/sync.c1z" | ||
| docker run --rm -v $(pwd):/out -e BATON_PARTNER_USER_ID=partnerUserId BATON_PARTNER_USER_SECRET=partnerUserSecret public.ecr.aws/conductorone/baton-expensify:latest -f "/out/sync.c1z" |
There was a problem hiding this comment.
🟡 Suggestion: Pre-existing on this touched line — BATON_PARTNER_USER_SECRET is missing its own -e flag, so docker run parses that token as the image name and the real image reference becomes a command argument. Since this line is already being edited, worth fixing:
| docker run --rm -v $(pwd):/out -e BATON_PARTNER_USER_ID=partnerUserId BATON_PARTNER_USER_SECRET=partnerUserSecret public.ecr.aws/conductorone/baton-expensify:latest -f "/out/sync.c1z" | |
| docker run --rm -v $(pwd):/out -e BATON_PARTNER_USER_ID=partnerUserId -e BATON_PARTNER_USER_SECRET=partnerUserSecret public.ecr.aws/conductorone/baton-expensify:latest -f "/out/sync.c1z" |
Connector PR Review: Update deprecated ghcr.io image reference to public.ecr.awsBlocking Issues: 0 | Suggestions: 2 | Threads Resolved: 0 Review SummaryThe full PR diff was scanned for security and correctness: it is a single-line README change swapping this connector's own image reference from Security IssuesNone found. Correctness IssuesNone found. Suggestions
Prompt for AI agentsNote: the machine-readable |
Summary
ghcr.io/conductorone/baton-expensify:latest; container images are now published topublic.ecr.aws/conductorone/baton-expensify:latestinstead.Test plan
public.ecr.aws/conductorone/baton-expensify:latestresolves (manifest exists) before opening this PR.🤖 Generated with Claude Code