Skip to content

Commit 70f05dd

Browse files
authored
fix: bump to golang v1.25.8 (#2969)
1 parent 0e16dd1 commit 70f05dd

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# use `docker buildx imagetools inspect <image>` to get the multi-platform sha256
2-
FROM golang:1.25.7-alpine@sha256:81d49e1de26fa223b9ae0b4d5a4065ff8176a7d80aa5ef0bd9f2eee430afe4d7 AS spicedb-builder
2+
FROM golang:1.25.8-alpine@sha256:8e02eb337d9e0ea459e041f1ee5eece41cbb61f1d83e7d883a3e2fb4862063fa AS spicedb-builder
33
WORKDIR /go/src/app
44
RUN apk update && apk add --no-cache git
55
COPY . .
66
# https://github.com/odigos-io/go-rtml#about-ldflags-checklinkname0
77
RUN --mount=type=cache,target=/root/.cache/go-build --mount=type=cache,target=/go/pkg/mod CGO_ENABLED=0 go build -tags memoryprotection -v -ldflags=-checklinkname=0 -o spicedb ./cmd/spicedb
88

99
# use `docker buildx imagetools inspect <image>` to get the multi-platform sha256
10-
FROM golang:1.25.7-alpine@sha256:81d49e1de26fa223b9ae0b4d5a4065ff8176a7d80aa5ef0bd9f2eee430afe4d7 AS health-probe-builder
10+
FROM golang:1.25.8-alpine@sha256:8e02eb337d9e0ea459e041f1ee5eece41cbb61f1d83e7d883a3e2fb4862063fa AS health-probe-builder
1111
WORKDIR /go/src/app
1212
RUN apk update && apk add --no-cache git
1313
RUN git clone https://github.com/authzed/grpc-health-probe.git

Dockerfile.release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# vim: syntax=dockerfile
22
# use `docker buildx imagetools inspect <image>` to get the multi-platform sha256
33
ARG BASE=cgr.dev/chainguard/static@sha256:99a5f826e71115aef9f63368120a6aa518323e052297718e9bf084fb84def93c
4-
FROM golang:1.25.7-alpine@sha256:81d49e1de26fa223b9ae0b4d5a4065ff8176a7d80aa5ef0bd9f2eee430afe4d7 AS health-probe-builder
4+
FROM golang:1.25.8-alpine@sha256:8e02eb337d9e0ea459e041f1ee5eece41cbb61f1d83e7d883a3e2fb4862063fa AS health-probe-builder
55
WORKDIR /go/src/app
66
RUN apk update && apk add --no-cache git
77
RUN git clone https://github.com/authzed/grpc-health-probe.git

e2e/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/authzed/spicedb/e2e
22

3-
go 1.25.7
3+
go 1.25.8
44

55
replace github.com/authzed/spicedb => ../
66

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/authzed/spicedb
22

3-
go 1.25.7
3+
go 1.25.8
44

55
// NOTE: We are using a *copy* of `cel-go` here to ensure there isn't a conflict
66
// with the version used in Kubernetes. This is a temporary measure until we can

magefiles/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module magefiles
22

3-
go 1.25.7
3+
go 1.25.8
44

55
require (
66
github.com/agnivade/wasmbrowsertest v0.11.0

magefiles/test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func (t Test) Unit(ctx context.Context) error {
4141
}
4242

4343
func (Test) unit(ctx context.Context, coverage bool) error {
44-
args := []string{"-tags", "ci,skipintegrationtests,memoryprotection", "-race", "-timeout", "10m", "-count=1"}
44+
args := []string{"-tags", "ci,skipintegrationtests,memoryprotection", "-race", "-timeout", "15m", "-count=1"}
4545
if coverage {
4646
fmt.Println("running unit tests with coverage")
4747
args = append(args, coverageFlags...)

tools/analyzers/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/authzed/spicedb/tools/analyzers
22

3-
go 1.25.7
3+
go 1.25.8
44

55
require (
66
github.com/samber/lo v1.52.0

tools/analyzers/go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.25.7
1+
go 1.25.8
22

33
use (
44
.

0 commit comments

Comments
 (0)