diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f4faf2e..fe89d10 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,48 +8,48 @@ updates: - package-ecosystem: "maven" directory: "hello-grpc-java" schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "gomod" directory: "hello-grpc-go" schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "cargo" directory: "hello-grpc-rust" schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "pip" directory: "hello-grpc-python" schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "npm" directory: "hello-grpc-nodejs" schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "nuget" directory: "hello-grpc-csharp" schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "pub" directory: "hello-grpc-dart" schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "composer" directory: "hello-grpc-php" schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "gradle" directory: "hello-grpc-kotlin" schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "swift" directory: "hello-grpc-swift" schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "npm" directory: "hello-grpc-ts" schedule: - interval: "monthly" + interval: "weekly" - package-ecosystem: "pub" directory: "hello_grpc_flutter" schedule: - interval: "monthly" \ No newline at end of file + interval: "weekly" \ No newline at end of file diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index f6ed12c..b082f5e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -27,8 +27,12 @@ jobs: - name: Build run: | sudo apt-get install protobuf-compiler - sh init.sh - sh proto2go.sh + go mod tidy + go install github.com/golang/protobuf/protoc-gen-go + go install google.golang.org/protobuf/cmd/protoc-gen-go@latest + go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest + protoc --go_out=. ./proto/landing.proto + protoc --go-grpc_out="$(pwd)" ./proto/landing.proto go build -v ./... - name: Test