fix: argocd-wait-sync ARM64 support#239
Merged
JesperTerkelsen merged 1 commit intomainfrom Feb 18, 2026
Merged
Conversation
The argocd-wait-sync action hardcoded argocd-linux-amd64, which would fail on ARM64 runners. Now detects architecture via uname -m and downloads the correct binary (amd64 or arm64). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
Fix
argocd-wait-syncaction to detect architecture when downloading ArgoCD CLI.Problem
The action hardcodes
argocd-linux-amd64, which would fail on ARM64 runners with exec format error.Fix
Detect architecture via
uname -mand download the correct binary:x86_64→argocd-linux-amd64aarch64→argocd-linux-arm64ArgoCD publishes both variants in their releases.
Context
Found during ARM64 compatibility audit of all deploy workflow dependencies. This action is used conditionally (only when ArgoCD auto-sync is enabled) so it wasn't caught in earlier testing.
🤖 Generated with Claude Code