From 2cf2eadc376c131a355011641b0b3674960b67e3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 11:58:58 +1000 Subject: [PATCH] build(deps): Bump bufbuild/buf-setup-action from 1.32.2 to 1.33.0 and fix linter issues (#1571) * build(deps): Bump bufbuild/buf-setup-action from 1.32.2 to 1.33.0 Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.32.2 to 1.33.0. - [Release notes](https://github.com/bufbuild/buf-setup-action/releases) - [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.32.2...v1.33.0) --- updated-dependencies: - dependency-name: bufbuild/buf-setup-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * buf: Fix linter issues --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Adrian Gallagher --- .github/workflows/proto-lint.yml | 2 +- gctrpc/rpc.proto | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/proto-lint.yml b/.github/workflows/proto-lint.yml index f3e36c5c..3a29973c 100644 --- a/.github/workflows/proto-lint.yml +++ b/.github/workflows/proto-lint.yml @@ -21,7 +21,7 @@ jobs: go install google.golang.org/protobuf/cmd/protoc-gen-go@latest go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest - - uses: bufbuild/buf-setup-action@v1.32.2 + - uses: bufbuild/buf-setup-action@v1.33.0 - name: buf generate working-directory: ./gctrpc diff --git a/gctrpc/rpc.proto b/gctrpc/rpc.proto index 7b35b96d..da69835d 100644 --- a/gctrpc/rpc.proto +++ b/gctrpc/rpc.proto @@ -1791,21 +1791,21 @@ service GoCryptoTraderService { rpc SetLoggerDetails(SetLoggerDetailsRequest) returns (GetLoggerDetailsResponse) { option (google.api.http) = { - post: "/v1/setloggerdetails", + post: "/v1/setloggerdetails" body: "*" }; } rpc GetExchangePairs(GetExchangePairsRequest) returns (GetExchangePairsResponse) { option (google.api.http) = { - post: "/v1/getexchangepairs", + post: "/v1/getexchangepairs" body: "*" }; } rpc SetExchangePair(SetExchangePairRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/setexchangepair", + post: "/v1/setexchangepair" body: "*" }; } @@ -1836,14 +1836,14 @@ service GoCryptoTraderService { rpc GCTScriptUpload(GCTScriptUploadRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/gctscript/upload", + post: "/v1/gctscript/upload" body: "*" }; } rpc GCTScriptReadScript(GCTScriptReadScriptRequest) returns (GCTScriptQueryResponse) { option (google.api.http) = { - post: "/v1/gctscript/read", + post: "/v1/gctscript/read" body: "*" }; } @@ -1858,27 +1858,27 @@ service GoCryptoTraderService { rpc GCTScriptStop(GCTScriptStopRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/gctscript/stop", + post: "/v1/gctscript/stop" body: "*" }; } rpc GCTScriptStopAll(GCTScriptStopAllRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/gctscript/stopall", + post: "/v1/gctscript/stopall" body: "*" }; } rpc GCTScriptListAll(GCTScriptListAllRequest) returns (GCTScriptStatusResponse) { option (google.api.http) = { - post: "/v1/gctscript/list", + post: "/v1/gctscript/list" body: "*" }; } rpc GCTScriptAutoLoadToggle(GCTScriptAutoLoadRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/gctscript/autoload", + post: "/v1/gctscript/autoload" body: "*" }; } @@ -1952,7 +1952,7 @@ service GoCryptoTraderService { rpc UpsertDataHistoryJob(UpsertDataHistoryJobRequest) returns (UpsertDataHistoryJobResponse) { option (google.api.http) = { - post: "/v1/upsertdatahistoryjob", + post: "/v1/upsertdatahistoryjob" body: "*" }; } @@ -1971,13 +1971,13 @@ service GoCryptoTraderService { } rpc SetDataHistoryJobStatus(SetDataHistoryJobStatusRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/setdatahistoryjobstatus", + post: "/v1/setdatahistoryjobstatus" body: "*" }; } rpc UpdateDataHistoryJobPrerequisite(UpdateDataHistoryJobPrerequisiteRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/updatedatahistoryjobprerequisite", + post: "/v1/updatedatahistoryjobprerequisite" body: "*" }; }