Skip to content

Commit c379903

Browse files
authored
Merge pull request #394 from authzed/go-1.25
chore: use go 1.25.5
2 parents 27f03e3 + 262be44 commit c379903

File tree

8 files changed

+8
-10
lines changed

8 files changed

+8
-10
lines changed

.github/workflows/build-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on: # yamllint disable-line rule:truthy
1111
branches:
1212
- "*"
1313
env:
14-
GO_VERSION: "~1.22"
14+
GO_VERSION: "~1.25"
1515
jobs:
1616
paths-filter:
1717
runs-on: "depot-ubuntu-24.04"

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on: # yamllint disable-line rule:truthy
1111
types:
1212
- "checks_requested"
1313
env:
14-
GO_VERSION: "~1.22"
14+
GO_VERSION: "~1.25"
1515
jobs:
1616
go-lint:
1717
name: "Lint Go"

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: "write"
99
packages: "write"
1010
env:
11-
GO_VERSION: "~1.22"
11+
GO_VERSION: "~1.25"
1212
jobs:
1313
goreleaser:
1414
runs-on: "depot-ubuntu-24.04"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25-alpine AS builder
1+
FROM golang:1.25.5-alpine AS builder
22
WORKDIR /go/src/app
33
ENV CGO_ENABLED=0
44

Dockerfile.release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# vim: syntax=dockerfile
22
FROM cgr.dev/chainguard/static:latest
3-
COPY --from=ghcr.io/grpc-ecosystem/grpc-health-probe:v0.4.25 /ko-app/grpc-health-probe /usr/local/bin/grpc_health_probe
3+
COPY --from=ghcr.io/grpc-ecosystem/grpc-health-probe:v0.4.42 /ko-app/grpc-health-probe /usr/local/bin/grpc_health_probe
44
COPY spicedb-operator /usr/local/bin/spicedb-operator
55
ENTRYPOINT ["spicedb-operator"]

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-operator/e2e
22

3-
go 1.24.0
3+
go 1.25.5
44

55
require (
66
cloud.google.com/go/spanner v1.85.0

go.mod

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

3-
go 1.24.0
4-
5-
toolchain go1.24.1
3+
go 1.25.5
64

75
require (
86
github.com/authzed/controller-idioms v0.13.0

tools/go.mod

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

3-
go 1.24.0
3+
go 1.25.5
44

55
require (
66
github.com/authzed/spicedb-operator v0.0.0-00010101000000-000000000000

0 commit comments

Comments
 (0)