Skip to content

Commit 1385a7d

Browse files
authored
chore: bump go version from 1.22 to 1.23 (#9571)
* chore: bump go version from 1.22 to 1.23 * bump golangci version from 1.57.1 to 1.62.0
1 parent 08001f6 commit 1385a7d

File tree

37 files changed

+74
-65
lines changed

37 files changed

+74
-65
lines changed

.github/workflows/integration-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Set up Go
3535
uses: actions/setup-go@v5
3636
with:
37-
go-version: 1.22.*
37+
go-version: 1.23.*
3838
id: go
3939

4040
# Retrieve build locations with `go env`

.github/workflows/linters-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: 1.22.*
20+
go-version: 1.23.*
2121
id: go
2222

2323
- name: Check out code into the Go module directory

.github/workflows/performance-comparison.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Set up Go
4242
uses: actions/setup-go@v5
4343
with:
44-
go-version: 1.22.*
44+
go-version: 1.23.*
4545
id: go
4646

4747
- name: Check out code into the Go module directory

.github/workflows/unit-tests-darwin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Go
2424
uses: actions/setup-go@v5
2525
with:
26-
go-version: 1.22.*
26+
go-version: 1.23.*
2727
id: go
2828

2929
# Retrieve build locations with `go env`

.github/workflows/unit-tests-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: 1.22.*
20+
go-version: 1.23.*
2121
id: go
2222

2323
- name: Check out code into the Go module directory

.github/workflows/unit-tests-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Go
2525
uses: actions/setup-go@v5
2626
with:
27-
go-version: 1.22.*
27+
go-version: 1.23.*
2828
id: go
2929

3030
# Retrieve build locations with `go env`

.github/workflows/verify-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Go
2424
uses: actions/setup-go@v5
2525
with:
26-
go-version: 1.22.*
26+
go-version: 1.23.*
2727
id: go
2828

2929
# Skip changes not affecting examples or integration/examples

cmd/skaffold/app/cmd/inspect_config_dependencies.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func cmdConfigDependenciesAdd() *cobra.Command {
4343
WithArgs(func(cmd *cobra.Command, args []string) error {
4444
if len(args) != 1 {
4545
errMsg := "`config-dependencies add` requires exactly one file path argument"
46-
olog.Entry(context.TODO()).Errorf(errMsg)
46+
olog.Entry(context.TODO()).Error(errMsg)
4747
return errors.New(errMsg)
4848
}
4949
return nil

deploy/skaffold/Dockerfile.deps

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,5 @@ RUN apt-get update && apt-get install --no-install-recommends --no-install-sugge
163163
jq \
164164
apt-transport-https && \
165165
rm -rf /var/lib/apt/lists/*
166-
COPY --from=golang:1.22.4 /usr/local/go /usr/local/go
166+
COPY --from=golang:1.23.3 /usr/local/go /usr/local/go
167167
ENV PATH /usr/local/go/bin:/root/go/bin:$PATH

deploy/skaffold/Dockerfile.deps.slim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,5 @@ RUN apt-get update && apt-get install --no-install-recommends --no-install-sugge
104104
jq \
105105
apt-transport-https && \
106106
rm -rf /var/lib/apt/lists/*
107-
COPY --from=golang:1.22.4 /usr/local/go /usr/local/go
107+
COPY --from=golang:1.23.3 /usr/local/go /usr/local/go
108108
ENV PATH /usr/local/go/bin:/root/go/bin:$PATH

0 commit comments

Comments
 (0)