From b1acc3ece3b33c9a4f775191e9b587d2786c8f1b Mon Sep 17 00:00:00 2001 From: not-matthias Date: Mon, 26 Jan 2026 11:51:52 +0100 Subject: [PATCH] fix(runner): update warning message format for go runner installation --- src/executor/helpers/introspected_golang/go.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/executor/helpers/introspected_golang/go.sh b/src/executor/helpers/introspected_golang/go.sh index 30c6abd1..0ff727db 100755 --- a/src/executor/helpers/introspected_golang/go.sh +++ b/src/executor/helpers/introspected_golang/go.sh @@ -43,8 +43,7 @@ if [ "$1" = "test" ]; then INSTALLER_VERSION="${CODSPEED_GO_RUNNER_VERSION:-latest}" if [ "$INSTALLER_VERSION" = "latest" ]; then DOWNLOAD_URL="http://github.com/CodSpeedHQ/codspeed-go/releases/latest/download/codspeed-go-runner-installer.sh" - echo "WARNING: Installing the latest version of codspeed-go-runner. This can silently introduce breaking changes." >&2 - echo "We recommend pinning a specific version via the `go-runner-version` option in the action." >&2 + 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 else DOWNLOAD_URL="http://github.com/CodSpeedHQ/codspeed-go/releases/download/v${INSTALLER_VERSION}/codspeed-go-runner-installer.sh" fi