Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add action data to operation entity #2

Merged
merged 1 commit into from
Sep 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.16-alpine AS build
FROM golang:1.19-alpine AS build

WORKDIR /go/src/app

Expand Down
13 changes: 11 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
module github.com/opencars/core

go 1.16
go 1.19

require (
github.com/opencars/grpc v0.1.0
github.com/opencars/grpc v0.2.0
github.com/rs/zerolog v1.20.0
google.golang.org/grpc v1.36.0
gopkg.in/yaml.v2 v2.4.0
)

require (
github.com/golang/protobuf v1.4.3 // indirect
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a // indirect
golang.org/x/text v0.3.0 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
google.golang.org/protobuf v1.25.0 // indirect
)
6 changes: 2 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,8 @@ github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
github.com/google/go-cmp v0.5.0 h1:/QaMHBdZ26BB3SSst0Iwl10Epc+xhTquomWX0oZEB6w=
github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/opencars/grpc v0.0.5 h1:t22KQ1rW8STBLAvUNjfmollmzhhwMtw/Xv2NmeE1JkM=
github.com/opencars/grpc v0.0.5/go.mod h1:Uk1ZsAaO/NKJTVXtdj8ML6Bd8PSJkm+VCPPpn1KxvDc=
github.com/opencars/grpc v0.1.0 h1:jIxdEh3wvs94hhfSOnw9Sm4tNGHROHTJspVpCLqEdtQ=
github.com/opencars/grpc v0.1.0/go.mod h1:Uk1ZsAaO/NKJTVXtdj8ML6Bd8PSJkm+VCPPpn1KxvDc=
github.com/opencars/grpc v0.2.0 h1:duIwD4P4akWWZ+NZiIViYSXXlmE4iQaC8ou6ZfIp6i4=
github.com/opencars/grpc v0.2.0/go.mod h1:Uk1ZsAaO/NKJTVXtdj8ML6Bd8PSJkm+VCPPpn1KxvDc=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
Expand Down