all: update deps after 1.83 branch cut (#9232)
Updated the dependencies by performing the following steps:
- Use the latest toolchain
```
LATEST_GO_VERSION=$(go list -m go@latest | awk '{print $2}')
export GOTOOLCHAIN="go${LATEST_GO_VERSION}+auto"
```
- Run the following twice
```
# The sort is needed to make '.' happen before subdirectories.
for x in $(find . -name 'go.mod' | xargs dirname | sort); do
pushd "${x}"
go get -u ./...
go mod tidy -compat=1.25
popd
done
```
Tested using:
```
./scripts/vet.sh
```
RELEASE NOTES: none E
Easwar Swaminathan committed
25387aabbf6861b80db644465e823c2e8b427090
Parent: 081051c
Committed by GitHub <noreply@github.com>
on 7/22/2026, 4:28:35 PM