mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-29 03:06:35 -05:00
2f24782ac4
* Bump google.golang.org/grpc in /go/gen/proto/dolt/services/eventsapi Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.29.1 to 1.53.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](https://github.com/grpc/grpc-go/compare/v1.29.1...v1.53.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Ran `go mod tidy` * Result of running Godeps/update.sh * Godeps/update.sh: Enumerate all released build configurations, instead of trying to put all tags in the single list. More correctly includes the union of all dependencies. The all-tags approach can miss dependencies which are taken in some configurations by !arch build constraints, for example. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Neil Macneale IV <neil@dolthub.com> Co-authored-by: Aaron Son <aaron@dolthub.com>
17 lines
564 B
Bash
Executable File
17 lines
564 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
script_dir=$(dirname "$0")
|
|
cd $script_dir/..
|
|
|
|
( GOOS=linux GOARCH=amd64 go list -deps -json ./cmd/dolt/. &&
|
|
GOOS=linux GOARCH=386 go list -deps -json ./cmd/dolt/. &&
|
|
GOOS=linux GOARCH=arm64 go list -deps -json ./cmd/dolt/. &&
|
|
GOOS=windows GOARCH=amd64 go list -deps -json ./cmd/dolt/. &&
|
|
GOOS=windows GOARCH=arm64 go list -deps -json ./cmd/dolt/. &&
|
|
GOOS=darwin GOARCH=amd64 go list -deps -json ./cmd/dolt/. &&
|
|
GOOS=darwin GOARCH=arm64 go list -deps -json ./cmd/dolt/.
|
|
) \
|
|
| go run ./utils/3pdeps/. > ./Godeps/LICENSES
|