Skip to content

Commit f21c37a

Browse files
committed
Build with Go 1.25
Signed-off-by: Stefan Prodan <[email protected]>
1 parent ba6b662 commit f21c37a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup Go
3232
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
3333
with:
34-
go-version: 1.24.x
34+
go-version: 1.25.x
3535
cache-dependency-path: |
3636
**/go.sum
3737
**/go.mod

.github/workflows/cifuzz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Go
1717
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
1818
with:
19-
go-version: 1.24.x
19+
go-version: 1.25.x
2020
cache-dependency-path: |
2121
**/go.sum
2222
**/go.mod

.github/workflows/scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup Go
3636
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
3737
with:
38-
go-version: 1.24.x
38+
go-version: 1.25.x
3939
cache-dependency-path: |
4040
**/go.sum
4141
**/go.mod

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ There are a number of dependencies required to be able to run image-reflector-co
1414
## How to run the test suite
1515

1616
Prerequisites:
17-
* go >= 1.24
17+
* go >= 1.25
1818
* kustomize >= 3.1
1919

2020
You can run them by simply doing

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.24
1+
ARG GO_VERSION=1.25
22
ARG XX_VERSION=1.6.1
33

44
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx
@@ -30,7 +30,7 @@ COPY internal/ internal/
3030
ENV CGO_ENABLED=0
3131
RUN xx-go build -trimpath -a -o image-reflector-controller main.go
3232

33-
FROM alpine:3.21
33+
FROM alpine:3.22
3434

3535
ARG TARGETPLATFORM
3636

0 commit comments

Comments
 (0)