Skip to content

Commit d741ec6

Browse files
author
Mateus Oliveira
authored
🌱 fix: remaining Go upgrades (#4470)
fix: remaining Go upgrades Signed-off-by: Mateus Oliveira <[email protected]>
1 parent 18ef6dd commit d741ec6

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/test-devcontainer.yaml renamed to .github/workflows/test-devcontainer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Checkout repository
1616
uses: actions/checkout@v4
1717

18-
- name: Setup Go 1.22.x
18+
- name: Setup Go
1919
uses: actions/setup-go@v5
2020
with:
2121
go-version-file: go.mod

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Please see https://git.k8s.io/community/CLA.md for more info.
1010

1111
## Prerequisites
1212

13-
- [go](https://golang.org/dl/) version v1.22+.
13+
- [go](https://golang.org/dl/) version v1.23+.
1414
- [docker](https://docs.docker.com/install/) version 17.03+.
1515
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) version v1.11.3+.
1616
- [kustomize](https://github.com/kubernetes-sigs/kustomize/blob/master/site/content/en/docs/Getting%20started/installation.md) v3.1.0+

docs/book/book.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ command = "./litgo.sh"
1717
command = "./markerdocs.sh"
1818

1919
[context.environment]
20-
environment = { GO_VERSION = "1.22" }
20+
environment = { GO_VERSION = "1.23" }
2121

2222
[context.deploy-preview.environment]
23-
environment = { GO_VERSION = "1.22" }
23+
environment = { GO_VERSION = "1.23" }
2424

docs/book/src/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This Quick Start guide will cover:
99

1010
## Prerequisites
1111

12-
- [go](https://go.dev/dl/) version v1.22.0+
12+
- [go](https://go.dev/dl/) version v1.23.0+
1313
- [docker](https://docs.docker.com/install/) version 17.03+.
1414
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) version v1.11.3+.
1515
- Access to a Kubernetes v1.11.3+ cluster.

docs/book/src/simple-external-plugin-tutorial/testdata/sampleexternalplugin/v1/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module v1
22

3-
go 1.22.0
3+
go 1.23.0
44

5-
toolchain go1.22.5
5+
godebug default=go1.23
66

77
require (
88
github.com/spf13/pflag v1.0.5

netlify.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build]
22
base = "docs/book"
3-
command = "GO_VERSION=1.22.0 ./install-and-build.sh"
3+
command = "GO_VERSION=1.23.0 ./install-and-build.sh"
44
publish = "docs/book/book"
55
functions = "docs/book/functions"
66

0 commit comments

Comments
 (0)