Skip to content

Commit

Permalink
Merge pull request #1950 from josephschorr/go1.22.4
Browse files Browse the repository at this point in the history
Move to go 1.22.4 for a reported go vuln
  • Loading branch information
josephschorr authored Jun 19, 2024
2 parents 0b73cf2 + 64bcd8a commit c965f1d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM golang:1.22.3-alpine3.18 AS spicedb-builder
FROM golang:1.22.4-alpine3.19 AS spicedb-builder
WORKDIR /go/src/app
RUN apk update && apk add --no-cache git
COPY . .
RUN --mount=type=cache,target=/root/.cache/go-build --mount=type=cache,target=/go/pkg/mod CGO_ENABLED=0 go build -v ./cmd/...

FROM golang:1.22.2-alpine3.18 AS health-probe-builder
FROM golang:1.22.4-alpine3.19 AS health-probe-builder
WORKDIR /go/src/app
RUN apk update && apk add --no-cache git
RUN git clone https://github.com/grpc-ecosystem/grpc-health-probe.git
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# vim: syntax=dockerfile
ARG BASE=cgr.dev/chainguard/static:latest

FROM golang:1.22.3-alpine3.18 AS health-probe-builder
FROM golang:1.22.4-alpine3.19 AS health-probe-builder
WORKDIR /go/src/app
RUN apk update && apk add --no-cache git
RUN git clone https://github.com/grpc-ecosystem/grpc-health-probe.git
Expand Down
2 changes: 1 addition & 1 deletion e2e/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/authzed/spicedb/e2e

go 1.22.2
go 1.22.4

require (
github.com/authzed/authzed-go v0.12.1-0.20240607163830-a28f71a1b0e5
Expand Down
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/authzed/spicedb

go 1.22.2
go 1.22.4

require (
buf.build/gen/go/prometheus/prometheus/protocolbuffers/go v1.34.1-20240528093609-8a58dfa894e0.1
Expand Down
2 changes: 1 addition & 1 deletion magefiles/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module magefiles

go 1.22.2
go 1.22.4

require (
github.com/agnivade/wasmbrowsertest v0.8.0
Expand Down
2 changes: 1 addition & 1 deletion tools/analyzers/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/authzed/spicedb/tools/analyzers

go 1.22.2
go 1.22.4

require golang.org/x/tools v0.11.0

Expand Down
2 changes: 1 addition & 1 deletion tools/analyzers/go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.22.2
go 1.22.4

toolchain go1.21.8

Expand Down

0 comments on commit c965f1d

Please sign in to comment.