Skip to content

Commit

Permalink
Merge pull request #3145 from embik/go-1.22.5
Browse files Browse the repository at this point in the history
🌱 Bump to Go 1.22.5
  • Loading branch information
kcp-ci-bot authored Jul 30, 2024
2 parents d3e6d82 + 4896459 commit f4297bd
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs-gen-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: v1.22.2
go-version: v1.22.5
cache: true

- uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: v1.22.2
go-version: v1.22.5
- name: Delete non-semver tags
run: 'git tag -d $(git tag -l | grep -v "^v")'
- name: Set LDFLAGS
Expand Down
16 changes: 8 additions & 8 deletions .prow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.22.2-1
- image: ghcr.io/kcp-dev/infra/build:1.22.5-1
command:
- make
- verify-boilerplate
Expand All @@ -27,7 +27,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.22.2-1
- image: ghcr.io/kcp-dev/infra/build:1.22.5-1
command:
- make
- verify-codegen
Expand All @@ -44,7 +44,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.22.2-1
- image: ghcr.io/kcp-dev/infra/build:1.22.5-1
command:
- make
- lint
Expand Down Expand Up @@ -83,7 +83,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.22.2-1
- image: ghcr.io/kcp-dev/infra/build:1.22.5-1
command:
- make
- test
Expand All @@ -104,7 +104,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.22.2-1
- image: ghcr.io/kcp-dev/infra/build:1.22.5-1
command:
- ./hack/run-with-prometheus.sh
- make
Expand Down Expand Up @@ -132,7 +132,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.22.2-1
- image: ghcr.io/kcp-dev/infra/build:1.22.5-1
command:
- ./hack/run-with-prometheus.sh
- make
Expand Down Expand Up @@ -162,7 +162,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.22.2-1
- image: ghcr.io/kcp-dev/infra/build:1.22.5-1
command:
- ./hack/run-with-prometheus.sh
- make
Expand All @@ -188,7 +188,7 @@ presubmits:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.22.2-1
- image: ghcr.io/kcp-dev/infra/build:1.22.5-1
command:
- ./hack/run-with-prometheus.sh
- make
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.

# Build the binary
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.22.2 AS builder
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.22.5 AS builder
WORKDIR /workspace

# Install dependencies.
Expand Down
2 changes: 1 addition & 1 deletion docs/content/contributing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ contribution. See the [DCO](https://github.com/kcp-dev/kcp/tree/main/DCO) file f
### Prerequisites

1. Clone this repository.
2. [Install Go](https://golang.org/doc/install) (currently 1.22.2).
2. [Install Go](https://golang.org/doc/install) (currently 1.22).
3. Install [kubectl](https://kubernetes.io/docs/tasks/tools/#kubectl).

Please note that the go language version numbers in these files must exactly agree: go/go.mod file, kcp/.ci-operator.yaml, kcp/Dockerfile, and in all the kcp/.github/workflows yaml files that specify go-version. In kcp/.ci-operator.yaml the go version is indicated by the "tag" attribute. In kcp/Dockerfile it is indicated by the "golang" attribute. In go.mod it is indicated by the "go" directive." In the .github/workflows yaml files it is indicated by "go-version"
Expand Down

0 comments on commit f4297bd

Please sign in to comment.