File tree Expand file tree Collapse file tree 20 files changed +28
-27
lines changed Expand file tree Collapse file tree 20 files changed +28
-27
lines changed Original file line number Diff line number Diff line change 44
44
- name : Set up Go
45
45
uses : actions/setup-go@v5
46
46
with :
47
- go-version : ' >=1.22.0 '
47
+ go-version : ' >=1.22.1 '
48
48
- name : Set up terraform
49
49
uses : hashicorp/setup-terraform@v2
50
50
- name : Run pylint and yapf, go vet
Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ set -eux
19
19
20
20
# Download and install Go
21
21
# https://pkg.go.dev/golang.org/x/tools/cmd/getgo#section-readme
22
- curl -LO https://get.golang.org/$( uname) /go_installer && chmod +x go_installer && SHELL=" bash" ./go_installer -version 1.22.0 && rm go_installer
22
+ curl -LO https://get.golang.org/$( uname) /go_installer && chmod +x go_installer && SHELL=" bash" ./go_installer -version 1.22.1 && rm go_installer
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM golang:1.22.0 -alpine@sha256:3325c5593767d8f1fd580e224707ca5e847a1679470a027aaa3c71711ce16613 AS GO_BUILD
15
+ FROM golang:1.22.1 -alpine@sha256:5a99b4049412cd34ad6b4e0c9527ae6beb9ae82d787b4bf3f4eff7aa13fc577a AS GO_BUILD
16
16
WORKDIR /build
17
17
18
18
# Cache dependencies in these steps
Original file line number Diff line number Diff line change 1
1
module github.com/google/osv.dev/docker/indexer
2
2
3
- go 1.22.0
3
+ go 1.22.1
4
4
5
5
require (
6
6
cloud.google.com/go/datastore v1.15.0
@@ -53,6 +53,6 @@ require (
53
53
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect
54
54
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect
55
55
google.golang.org/grpc v1.59.0 // indirect
56
- google.golang.org/protobuf v1.31 .0 // indirect
56
+ google.golang.org/protobuf v1.33 .0 // indirect
57
57
gopkg.in/warnings.v0 v0.1.2 // indirect
58
58
)
Original file line number Diff line number Diff line change @@ -262,8 +262,8 @@ google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpAD
262
262
google.golang.org/protobuf v1.25.0 /go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c =
263
263
google.golang.org/protobuf v1.26.0-rc.1 /go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw =
264
264
google.golang.org/protobuf v1.26.0 /go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc =
265
- google.golang.org/protobuf v1.31 .0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8 =
266
- google.golang.org/protobuf v1.31 .0 /go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I =
265
+ google.golang.org/protobuf v1.33 .0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI =
266
+ google.golang.org/protobuf v1.33 .0 /go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos =
267
267
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
268
268
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
269
269
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk =
Original file line number Diff line number Diff line change 1
1
# Taken and modified from https://github.com/GoogleCloudPlatform/cloud-builders-community/tree/master/terraform
2
2
3
- FROM golang:1.21 -alpine@sha256:feceecc0e1d73d085040a8844de11a2858ba4a0c58c16a672f1736daecc2a4ff AS GO_BUILD
3
+ FROM golang:1.22.1 -alpine@sha256:5a99b4049412cd34ad6b4e0c9527ae6beb9ae82d787b4bf3f4eff7aa13fc577a AS GO_BUILD
4
4
5
5
ARG TERRAFORM_VERSION
6
6
WORKDIR /build/
Original file line number Diff line number Diff line change 1
1
module osv.dev/tools
2
2
3
- go 1.21.6
3
+ go 1.22.1
4
4
5
5
require (
6
6
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1
7
7
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0
8
- google.golang.org/protobuf v1.32 .0
8
+ google.golang.org/protobuf v1.33 .0
9
9
)
10
10
11
11
require (
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ google.golang.org/grpc v1.61.0 h1:TOvOcuXn30kRao+gfcvsebNEa5iZIiLkisYEkf7R7o0=
27
27
google.golang.org/grpc v1.61.0 /go.mod h1:VUbo7IFqmF1QtCAstipjG0GIoq49KvMe9+h1jFLBNJs =
28
28
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0 h1:rNBFJjBCOgVr9pWD7rs/knKL4FRTKgpZmsRfV214zcA =
29
29
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0 /go.mod h1:Dk1tviKTvMCz5tvh7t+fh94dhmQVHuCt2OzJB3CTW9Y =
30
- google.golang.org/protobuf v1.32 .0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I =
31
- google.golang.org/protobuf v1.32 .0 /go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos =
30
+ google.golang.org/protobuf v1.33 .0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI =
31
+ google.golang.org/protobuf v1.33 .0 /go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos =
32
32
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
33
33
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk =
34
34
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c /go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q =
Original file line number Diff line number Diff line change 1
- go 1.22.0
1
+ go 1.22.1
2
2
3
3
use (
4
4
./docker/indexer
Original file line number Diff line number Diff line change @@ -794,6 +794,7 @@ google.golang.org/grpc v1.57.0/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt
794
794
google.golang.org/grpc v1.58.3 /go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0 =
795
795
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0 /go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw =
796
796
google.golang.org/protobuf v1.28.0 /go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I =
797
+ google.golang.org/protobuf v1.32.0 /go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos =
797
798
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
798
799
gopkg.in/yaml.v2 v2.2.4 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
799
800
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc h1:/hemPrYIhOhy8zYrNj+069zDB68us2sMGsfkFJO0iZs =
You can’t perform that action at this time.
0 commit comments