Skip to content

Commit

Permalink
fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ysugimoto committed Apr 27, 2024
1 parent 1250777 commit 646517c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
sudo chmod +xr -R /usr/local/protoc
sudo ln -s /usr/local/protoc/bin/protoc /usr/local/bin
sudo ln -s /usr/local/protoc/include/google /usr/local/include/google
go get -u github.com/golang/protobuf/protoc-gen-go
- name: Lint programs
uses: golangci/golangci-lint-action@v3
with:
Expand All @@ -35,6 +34,8 @@ jobs:
skip-build-cache: true
skip-go-installation: true
- name: Build app
run: make all tag=ci
run: |
go install google.golang.org/protobuf/cmd/[email protected]
make all tag=ci
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ysugimoto/grpc-graphql-gateway

go 1.15
go 1.21

require (
github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0
Expand Down

0 comments on commit 646517c

Please sign in to comment.