Skip to content

Commit 422c68e

Browse files
committed
fix(runner): update warning message format for go runner installation
1 parent fe9f4c7 commit 422c68e

File tree

1 file changed

+1
-2
lines changed
  • src/executor/helpers/introspected_golang

1 file changed

+1
-2
lines changed

src/executor/helpers/introspected_golang/go.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ if [ "$1" = "test" ]; then
4343
INSTALLER_VERSION="${CODSPEED_GO_RUNNER_VERSION:-latest}"
4444
if [ "$INSTALLER_VERSION" = "latest" ]; then
4545
DOWNLOAD_URL="http://github.com/CodSpeedHQ/codspeed-go/releases/latest/download/codspeed-go-runner-installer.sh"
46-
echo "WARNING: Installing the latest version of codspeed-go-runner. This can silently introduce breaking changes." >&2
47-
echo "We recommend pinning a specific version via the `go-runner-version` option in the action." >&2
46+
echo "::warning::Installing the latest version of codspeed-go-runner. This can silently introduce breaking changes. We recommend pinning a specific version via the \`go-runner-version\` option in the action." >&2
4847
else
4948
DOWNLOAD_URL="http://github.com/CodSpeedHQ/codspeed-go/releases/download/v${INSTALLER_VERSION}/codspeed-go-runner-installer.sh"
5049
fi

0 commit comments

Comments
 (0)