Skip to content

Commit 1aa87f8

Browse files
authored
Merge pull request #736 from matheuscscp/go-1.23
Build with Go 1.23
2 parents 2387dd9 + e207b2f commit 1aa87f8

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Go
1717
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
1818
with:
19-
go-version-file: 'go.mod'
19+
go-version: 1.23.x
2020
cache-dependency-path: |
2121
**/go.sum
2222
**/go.mod
@@ -34,7 +34,7 @@ jobs:
3434
- name: Setup Go
3535
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
3636
with:
37-
go-version-file: 'go.mod'
37+
go-version: 1.23.x
3838
cache-dependency-path: |
3939
**/go.sum
4040
**/go.mod

.github/workflows/cifuzz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Go
1616
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
1717
with:
18-
go-version-file: 'go.mod'
18+
go-version: 1.23.x
1919
cache-dependency-path: |
2020
**/go.sum
2121
**/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@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

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.20
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/image-automation-controller

0 commit comments

Comments
 (0)