Vendoring Go dependencies

    1. Add the desired import to a file.
    2. Run make gomod to start the update process. If this step is successful, the imported dependency will be added to the vendor subdirectory.
    3. Commit any changes, including changes to the directory, go.mod, and go.sum.
    4. Open a pull request with these changes separately from other work so that it is easier to review.
    1. Run make gomod.
    2. Review the changes to ensure that they are as intended / trustworthy.
    3. Commit any changes, including changes to the vendor directory, and go.sum.
    4. Open a pull request with these changes separately from other work so that it is easier to review. Please include any significant changes you observed.