chore: replace Docker-based git-rebase-push-action with inline bash#238
Merged
JesperTerkelsen merged 1 commit intomainfrom Feb 18, 2026
Merged
Conversation
Artur-Davtyan/git-rebase-push-action@v1 is a Docker action that hardcodes yq_linux_amd64, making it incompatible with ARM64 runners. Replace with equivalent inline bash that: - Commits and pushes to main - Retries up to 10 times on push failure - Rebases on top of latest main - Re-applies changes on rebase conflict (same sed/yq commands) Also removes Docker cleanup steps (no longer needed since we're not running a Docker action that creates root-owned files). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
chandrashekar-dhar
approved these changes
Feb 18, 2026
joscdk
approved these changes
Feb 18, 2026
JesperTerkelsen
added a commit
that referenced
this pull request
Feb 18, 2026
All ARM64 blockers have been resolved: - slack-notifier-cli: ARM64 binary + TLS fix (v1.3.3) - slack-notifier-cli-action: architecture detection (PR #18) - git-rebase-push-action: replaced with inline bash (PR #238) - argocd-wait-sync: architecture detection (PR #239) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5 tasks
JesperTerkelsen
added a commit
that referenced
this pull request
Feb 18, 2026
All ARM64 blockers have been resolved: - slack-notifier-cli: ARM64 binary + TLS fix (v1.3.3) - slack-notifier-cli-action: architecture detection (PR #18) - git-rebase-push-action: replaced with inline bash (PR #238) - argocd-wait-sync: architecture detection (PR #239) Co-authored-by: Jesper Terkelsen <jete@monta.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
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.
Summary
Replace
Artur-Davtyan/git-rebase-push-action@v1(Docker) with inline bash in deploy workflows.Problem
The Docker action hardcodes
yq_linux_amd64in its Dockerfile, making it incompatible with ARM64 runners. This blocks migrating deploy workflows tolinux-arm64.Solution
Replace with equivalent inline bash that implements the same retry logic:
origin/mainorigin/main, re-apply changes (same sed/yq commands), recommitAlso removes Docker cleanup steps (
sudo chown/sudo rm -rf) that were only needed because Docker actions create root-owned files.Changed files
component-deploy.yml— used bydeploy-generic.yml(kube-manifests based deploys)component-deploy-v2.yml— used bydeploy-generic-v2.yml(service-repo based deploys)Testing
This PR keeps
ubuntu-latest(x64) to validate the inline bash works before migrating to ARM64 in a follow-up.Follow-up
Once verified, a separate PR will switch these +
component-initialize.ymltolinux-arm64.🤖 Generated with Claude Code