From f0f6c229f6d10c6f3f770777a5bc23b1bd808439 Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Mon, 29 Apr 2024 11:16:30 +0200 Subject: [PATCH] Go: fix regex in action for macOS --- go/actions/test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/actions/test/action.yml b/go/actions/test/action.yml index f9bdee5fe0c0..ade22410d957 100644 --- a/go/actions/test/action.yml +++ b/go/actions/test/action.yml @@ -13,7 +13,7 @@ runs: run: | ( echo -n "GO_VERSION=" - bazel run @rules_go//go -- version | sed 's/go version go\(\S*\) .*/\1/' + bazel run @rules_go//go -- version | sed 's/go version go\(.*\) .*/\1/' ) | tee -a "$GITHUB_ENV" - name: Set up Go