From 2a192bba0bbbcd0c121fae3ebbb96d5da1603e3b Mon Sep 17 00:00:00 2001 From: Tom Proctor Date: Mon, 23 Mar 2026 11:49:59 +0000 Subject: [PATCH] .github/workflows: limit vet to the tailscale.com module This repo's module is tailscale.com, and the tailscale-client-go-v2 repo uses tailscale.com/client/tailscale/v2. It seems from #19010 that if we have the client module as a dependency in this module, go vet will start to consider the client module as part of tailscale.com/... I'm not sure if this is a bug in go vet, but for now let's take the easy fix and specify ./... instead. In my testing, it seems like this is sufficient to make sure it just walks the file hierarchy and doesn't find the client module as a sub-path. Updates tailscale/corp#38418 --- .github/workflows/vet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vet.yml b/.github/workflows/vet.yml index 574852e62..29975357f 100644 --- a/.github/workflows/vet.yml +++ b/.github/workflows/vet.yml @@ -36,4 +36,4 @@ jobs: - name: Run 'go vet' working-directory: src - run: ./tool/go vet -vettool=/tmp/vettool tailscale.com/... + run: ./tool/go vet -vettool=/tmp/vettool ./...