From 2fdcdfdd61c77fa830351fe93bbb66f2f2dedbb8 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 30 Jul 2023 23:59:15 -0400 Subject: [PATCH] Remove vendoring instructions from contributing docs The `vendor` directory is `.gitignore`d, and vendoring as a process was fully removed in #4903. --- CONTRIBUTING.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d67118b0..4793bb00 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -152,9 +152,10 @@ $ script/cibuild # runs everything, with verbose debug output ## Updating 3rd party packages -1. Update `go.mod`. -1. Run `make vendor` to update the code in the `vendor` directory. -1. Commit the change. Git LFS vendors the full source code in the repository. +1. Update `go.mod` and `go.sum`. You can ensure the latter is up-to-date by + using Go tools instead of manually editing `go.mod` (e.g., `go get + gopath@version`) or by running `go mod tidy` or `make go.sum`. +1. Commit the change. 1. Submit a pull request. ## Releasing