Preserve native Go environment names in action outputs (#793)

* preserve native Go environment names in action outputs

* implement review comment

* Add missing trailing newline to action.yml

---------

Co-authored-by: mahabaleshwars <147705296+mahabaleshwars@users.noreply.github.com>
This commit is contained in:
v-mahabaleshwars
2026-09-25 10:35:28 -05:00
committed by GitHub
co-authored by mahabaleshwars
parent e626ada899
commit 3bfff43db6
8 changed files with 93 additions and 101 deletions
+10 -8
View File
@@ -95641,16 +95641,18 @@ var State;
var Outputs;
(function (Outputs) {
Outputs["CacheHit"] = "cache-hit";
Outputs["GoPath"] = "go-path";
Outputs["GoBin"] = "go-bin";
Outputs["GoBinPath"] = "go-bin-path";
Outputs["GoRoot"] = "go-root";
Outputs["GoCache"] = "go-cache";
Outputs["GoModCache"] = "go-mod-cache";
Outputs["GoOs"] = "go-os";
Outputs["GoArch"] = "go-arch";
Outputs["GoToolDir"] = "go-tool-dir";
})(Outputs || (Outputs = {}));
const GO_ENV_OUTPUTS = (/* unused pure expression or super */ null && ([
'GOPATH',
'GOBIN',
'GOROOT',
'GOCACHE',
'GOMODCACHE',
'GOOS',
'GOARCH',
'GOTOOLDIR'
]));
;// CONCATENATED MODULE: ./src/package-managers.ts
const supportedPackageManagers = {