Skip to content

Commit 5e824e4

Browse files
1 parent 5bdd7b6 commit 5e824e4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

content/en/community/code/_index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ If you're struggling at any point in this contribution guide, reach out to the J
3030
To contribute to Jenkins X jx binary, you will need:
3131

3232
* [Git](https://git-scm.com) and a [GitHub](https://github.com) account
33-
* [Go](https://golang.org/) `1.18.X`, with support for compiling to `linux/amd64`
34-
* [golangci-lint](https://github.com/golangci/golangci-lint)`1.46.2`, wich will be used to lint your code later
33+
* [Go](https://golang.org/) `1.23.X`, with support for compiling to `linux/amd64`
34+
* [golangci-lint](https://github.com/golangci/golangci-lint)`1.50.1`, wich will be used to lint your code later
3535
* [pre-commit](https://pre-commit.com/#install) - once installed, ensure you're at the root of the repository which contains a `.pre-commit-config.yaml` configuration file, then:
3636

3737
```sh
@@ -40,7 +40,7 @@ pre-commit install
4040

4141
### Install Go
4242

43-
We recommend `1.17.X` version of go as the pull request checks run against this version.
43+
We recommend `1.23.X` version of go as the pull request checks run against this version.
4444

4545
The installation of Go should take only a few minutes. You have more than one option to get Go up and running on your machine.
4646

@@ -51,7 +51,7 @@ If you are having trouble following the installation guides for go, check out [G
5151
If you are a macOS user and have [Homebrew](https://brew.sh/) installed on your machine, installing Go is as simple as the following command:
5252

5353
```sh
54-
brew install go@1.15
54+
brew install go@1.23
5555
```
5656

5757
#### Install Go via GVM
@@ -83,7 +83,7 @@ go version
8383
You should see something similar to the following written to the console (on macOS). Note that the version here reflects the most recent version of Go as of the last update for this page:
8484

8585
```sh
86-
go version go1.17.x darwin/amd64
86+
go version go1.23.x darwin/amd64
8787
```
8888

8989
Next, make sure that you set up your `GOPATH` [as described in the installation guide](https://github.com/golang/go/wiki/SettingGOPATH).

content/en/v3/about/concepts/deployment-lifecycle.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ spec:
241241
#!/usr/bin/env sh
242242
jx gitops variables
243243
jx gitops pr variables
244-
- image: golang:1.17.9
244+
- image: golang:1.23.2
245245
name: build-make-linux
246246
resources: {}
247247
script: |

content/en/v3/develop/environments/preview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ e.g. here is an additional step to curl the preview URL after the `jx preview cr
184184
```yaml
185185
...
186186
- name: test-preview
187-
image: golang:1.15
187+
image: golang:1.23
188188
script: |
189189
#!/usr/bin/env sh
190190
source .jx/variables.sh

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/jenkins-x/jx-docs
22

3-
go 1.17
3+
go 1.23
44

55
require (
66
github.com/FortAwesome/Font-Awesome v0.0.0-20210804190922-7d3d774145ac // indirect

0 commit comments

Comments
 (0)