Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.26.2
go-version: 1.26.3
id: go

- name: Set up Java
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.26.2
go-version: 1.26.3
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests-darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.26.2
go-version: 1.26.3
id: go

# Retrieve build locations with `go env`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.26.2
go-version: 1.26.3
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.26.2
go-version: 1.26.3
id: go

# Retrieve build locations with `go env`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.26.2
go-version: 1.26.3
id: go

# Skip changes not affecting examples or integration/examples
Expand Down
3 changes: 1 addition & 2 deletions deploy/skaffold/Dockerfile.deps
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ARG ARCH=amd64

FROM ${BASE_PREFIX}docker:28.1.1 as docker-source
FROM docker/buildx-bin:0.23.0 as buildx-source
FROM ${BASE_PREFIX}golang:1.26.2 as golang-source
FROM ${BASE_PREFIX}golang:1.26.3 as golang-source

# Download kubectl
FROM ${BASE_PREFIX}alpine:3.21.2 as download-kubectl
Expand Down Expand Up @@ -169,7 +169,6 @@ RUN apt-get update && apt-get install --no-install-recommends --no-install-sugge
jq \
apt-transport-https && \
rm -rf /var/lib/apt/lists/*

# Use the alias created at the top
COPY --from=golang-source /usr/local/go /usr/local/go
ENV PATH /usr/local/go/bin:/root/go/bin:$PATH
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/GoogleContainerTools/skaffold/v2

go 1.26.2
go 1.26.3
Comment thread
alphanota marked this conversation as resolved.

// broken on Windows, see https://github.com/karrick/godirwalk/issues/70
exclude github.com/karrick/godirwalk v1.17.0
Expand Down
Loading