Skip to content

Commit 3e200a4

Browse files
authored
chore: Upgrade golang version to 1.25.8 (#10009)
chore: Upgrade golang version to 1.25.8
1 parent af4c0b7 commit 3e200a4

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/integration-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Go
3636
uses: actions/setup-go@v6
3737
with:
38-
go-version: 1.25.7
38+
go-version: 1.25.8
3939
id: go
4040

4141
- name: Set up Java

.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@v6
1919
with:
20-
go-version: 1.25.7
20+
go-version: 1.25.8
2121
id: go
2222

2323
- 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@v6
2525
with:
26-
go-version: 1.25.7
26+
go-version: 1.25.8
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@v6
1919
with:
20-
go-version: 1.25.7
20+
go-version: 1.25.8
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@v6
2626
with:
27-
go-version: 1.25.7
27+
go-version: 1.25.8
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@v6
2525
with:
26-
go-version: 1.25.7
26+
go-version: 1.25.8
2727
id: go
2828

2929
# Skip changes not affecting examples or integration/examples

deploy/skaffold/Dockerfile.deps

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ARG ARCH=amd64
1717

1818
FROM ${BASE_PREFIX}docker:28.1.1 as docker-source
1919
FROM docker/buildx-bin:0.23.0 as buildx-source
20-
FROM ${BASE_PREFIX}golang:1.25.7 as golang-source
20+
FROM ${BASE_PREFIX}golang:1.25.8 as golang-source
2121

2222
# Download kubectl
2323
FROM ${BASE_PREFIX}alpine:3.21.2 as download-kubectl

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/GoogleContainerTools/skaffold/v2
22

3-
go 1.25.7
3+
go 1.25.8
44

55
// broken on Windows, see https://github.com/karrick/godirwalk/issues/70
66
exclude github.com/karrick/godirwalk v1.17.0

0 commit comments

Comments
 (0)