.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 <tomhjp@users.noreply.github.com>
This commit is contained in:
@@ -14,14 +14,16 @@ on:
|
|||||||
- main
|
- main
|
||||||
- "release-branch/*"
|
- "release-branch/*"
|
||||||
paths:
|
paths:
|
||||||
|
- .github/workflows/vet.yml
|
||||||
- "**.go"
|
- "**.go"
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
|
- .github/workflows/vet.yml
|
||||||
- "**.go"
|
- "**.go"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
vet:
|
vet:
|
||||||
runs-on: [ self-hosted, linux ]
|
runs-on: ubuntu-24.04
|
||||||
timeout-minutes: 5
|
timeout-minutes: 5
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
Reference in New Issue
Block a user