From c58d96c7f3d3b99398d8a98e4cf1227a9cdb50ec Mon Sep 17 00:00:00 2001 From: "derrik.fleming" Date: Wed, 18 Dec 2024 23:33:24 -0500 Subject: [PATCH] fix: amd64 arch to X64 --- 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 0103ebdb2f0..4e9efd18b52 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",