Skip to content

Commit 719da28

Browse files
authored
chore: upgrade golang to 1.25.4 (#9909)
* chore: upgrade golang to 1.25.4 * chore: upgrade golang to 1.25.4
1 parent 9445381 commit 719da28

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.3
38+
go-version: 1.25.4
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.3
20+
go-version: 1.25.4
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.3
26+
go-version: 1.25.4
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.3
20+
go-version: 1.25.4
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.3
27+
go-version: 1.25.4
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.3
26+
go-version: 1.25.4
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
@@ -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.25.3 /usr/local/go /usr/local/go
166+
COPY --from=golang:1.25.4 /usr/local/go /usr/local/go
167167
ENV PATH /usr/local/go/bin:/root/go/bin:$PATH

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.3
3+
go 1.25.4
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)