We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ee178e commit 3049baeCopy full SHA for 3049bae
.github/actions/setup/action.yml
@@ -147,7 +147,9 @@ runs:
147
SSL_WORKAROUND=""
148
SHIM_CMDS="npm yarn pnpm pip uv cargo"
149
if [ "$SFW_IS_ENTERPRISE" = "true" ]; then
150
- SHIM_CMDS="npm yarn pnpm pip uv cargo gem bundler nuget go"
+ SHIM_CMDS="npm yarn pnpm pip uv cargo gem bundler nuget"
151
+ # Go wrapper mode is only supported on Linux.
152
+ [[ "$OSTYPE" == linux* ]] && SHIM_CMDS="$SHIM_CMDS go"
153
else
154
SSL_WORKAROUND='export GIT_SSL_NO_VERIFY=true # Workaround: sfw-free does not yet set GIT_SSL_CAINFO.'
155
fi
0 commit comments