From e22d12ae53ff214252149e39a586050d4632b441 Mon Sep 17 00:00:00 2001 From: earl-warren Date: Thu, 7 Aug 2025 09:50:35 +0000 Subject: [PATCH] fix: amd64 arch to X64 (#2580) (#819) (cherry picked from commit c671295aab9192b49e4acc981e9c5b2c1d567884) Refs https://github.com/nektos/act/pull/2580/files - bug fixes - [PR](https://code.forgejo.org/forgejo/runner/pulls/819): fix: amd64 arch to X64 (#2580) Co-authored-by: derrik <82898438+derrik-fleming@users.noreply.github.com> Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/819 Reviewed-by: Michael Kriese --- act/container/host_environment.go | 1 + 1 file changed, 1 insertion(+) diff --git a/act/container/host_environment.go b/act/container/host_environment.go index fe1fef6d..43cb2974 100644 --- a/act/container/host_environment.go +++ b/act/container/host_environment.go @@ -462,6 +462,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",