From e6b5062e5cbf7c424b8566fb547f5121c512930c Mon Sep 17 00:00:00 2001 From: derrik <82898438+derrik-fleming@users.noreply.github.com> Date: Tue, 24 Dec 2024 11:56:52 -0500 Subject: [PATCH] fix: amd64 arch to X64 (#2580) --- pkg/container/host_environment.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/container/host_environment.go b/pkg/container/host_environment.go index 0103ebd..4e9efd1 100644 --- a/pkg/container/host_environment.go +++ b/pkg/container/host_environment.go @@ -423,6 +423,7 @@ func (*HostEnvironment) JoinPathVariable(paths ...string) string { // https://docs.github.com/en/actions/learn-github-actions/contexts#runner-context func goArchToActionArch(arch string) string { archMapper := map[string]string{ + "amd64": "X64", "x86_64": "X64", "386": "X86", "aarch64": "ARM64",