From 7a15cb14ba53d24fb6b8a23f9a25e62e27c15ffc Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:43:40 +0000 Subject: [PATCH 1/2] Initial plan From cf0707796748b0cc74887c77060bdd65e7644bef Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:45:22 +0000 Subject: [PATCH 2/2] Fix setup-go cache configuration to avoid invalid path pattern Changed from using `cache-dependency-path: ${{ github.action_path }}/go.sum` to `cache: true` and `cache-dependency-path: go.sum` to avoid the double slash issue that was causing the warning: "Invalid pattern '/path/.//go.sum'. Relative pathing '.' and '..' is not allowed." The cache will now use the go.sum file from the working directory without the problematic path concatenation. Co-authored-by: tcarmet <8408330+tcarmet@users.noreply.github.com> --- action.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index af8a86b..e31905b 100644 --- a/action.yaml +++ b/action.yaml @@ -28,7 +28,8 @@ runs: uses: actions/setup-go@v6 with: go-version: '1.24.3' - cache-dependency-path: ${{ github.action_path }}/go.sum + cache: true + cache-dependency-path: go.sum - name: Build workbench shell: bash