Skip to content

Commit 164e1a7

Browse files
authored
Merge pull request #1582 from fluxcd/go-1.23
Build with Go 1.23
2 parents d39592f + 4eaedd5 commit 164e1a7

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/workflows/cifuzz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Go
2222
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2323
with:
24-
go-version-file: 'go.mod'
24+
go-version: 1.23.x
2525
cache-dependency-path: |
2626
**/go.sum
2727
**/go.mod

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Go
2525
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2626
with:
27-
go-version-file: 'go.mod'
27+
go-version: 1.23.x
2828
cache-dependency-path: |
2929
**/go.sum
3030
**/go.mod

.github/workflows/scan.yaml

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@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
3737
with:
38-
go-version-file: 'go.mod'
38+
go-version: 1.23.x
3939
cache-dependency-path: |
4040
**/go.sum
4141
**/go.mod

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Go
2525
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2626
with:
27-
go-version-file: 'go.mod'
27+
go-version: 1.23.x
2828
cache-dependency-path: |
2929
**/go.sum
3030
**/go.mod
@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup Go
4646
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
4747
with:
48-
go-version-file: 'go.mod'
48+
go-version: 1.23.x
4949
cache-dependency-path: |
5050
**/go.sum
5151
**/go.mod

.github/workflows/verify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Go
2424
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2525
with:
26-
go-version-file: 'go.mod'
26+
go-version: 1.23.x
2727
cache-dependency-path: |
2828
**/go.sum
2929
**/go.mod

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If any of the above dependencies are not present on your system, the first invoc
2424
## How to run the test suite
2525

2626
Prerequisites:
27-
* Go >= 1.21
27+
* Go >= 1.23
2828

2929
You can run the test suite by simply doing
3030

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG BASE_VARIANT=alpine
2-
ARG GO_VERSION=1.22
2+
ARG GO_VERSION=1.23
33
ARG XX_VERSION=1.4.0
44

55
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx

tests/fuzz/Dockerfile.builder

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM gcr.io/oss-fuzz-base/base-builder-go
22

3-
RUN wget https://go.dev/dl/go1.22.1.linux-amd64.tar.gz \
3+
RUN wget https://go.dev/dl/go1.23.0.linux-amd64.tar.gz \
44
&& mkdir temp-go \
55
&& rm -rf /root/.go/* \
6-
&& tar -C temp-go/ -xzf go1.22.1.linux-amd64.tar.gz \
6+
&& tar -C temp-go/ -xzf go1.23.0.linux-amd64.tar.gz \
77
&& mv temp-go/go/* /root/.go/
88

99
ENV SRC=$GOPATH/src/github.com/fluxcd/source-controller

0 commit comments

Comments
 (0)