From 788a49eca5a3ef07ac068f71a6bc2f9c60678352 Mon Sep 17 00:00:00 2001 From: Tom Proctor Date: Thu, 28 May 2026 21:30:46 +0100 Subject: [PATCH] .github/workflows: run vet on GitHub-hosted runners (#19913) The github-ci-vm machine that runs our self-hosted CI for this repo is only designed for the `vm` job in test.yml. That uses a different cache dir which is causing github-ci-vm's small disk to fill up. Switch to ubuntu 24.04 like the rest of our CI for this repo that doesn't require anything special. Updates tailscale/corp#40465 Signed-off-by: Tom Proctor --- .github/workflows/vet.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/vet.yml b/.github/workflows/vet.yml index c03190e4f..2af8f24b5 100644 --- a/.github/workflows/vet.yml +++ b/.github/workflows/vet.yml @@ -14,14 +14,16 @@ on: - main - "release-branch/*" paths: + - .github/workflows/vet.yml - "**.go" pull_request: paths: + - .github/workflows/vet.yml - "**.go" jobs: vet: - runs-on: [ self-hosted, linux ] + runs-on: ubuntu-24.04 timeout-minutes: 5 steps: