Skip to content

Commit

Permalink
Update _index.md versions
Browse files Browse the repository at this point in the history
  • Loading branch information
clintonsteiner committed Dec 18, 2024
1 parent 5bdd7b6 commit 3e0d6f6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions content/en/community/code/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ If you're struggling at any point in this contribution guide, reach out to the J
To contribute to Jenkins X jx binary, you will need:

* [Git](https://git-scm.com) and a [GitHub](https://github.com) account
* [Go](https://golang.org/) `1.18.X`, with support for compiling to `linux/amd64`
* [golangci-lint](https://github.com/golangci/golangci-lint)`1.46.2`, wich will be used to lint your code later
* [Go](https://golang.org/) `1.23.X`, with support for compiling to `linux/amd64`
* [golangci-lint](https://github.com/golangci/golangci-lint)`1.50.1`, wich will be used to lint your code later
* [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:

```sh
Expand All @@ -40,7 +40,7 @@ pre-commit install

### Install Go

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

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.

Expand All @@ -51,7 +51,7 @@ If you are having trouble following the installation guides for go, check out [G
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:

```sh
brew install go@1.15
brew install go@1.23
```

#### Install Go via GVM
Expand Down Expand Up @@ -83,7 +83,7 @@ go version
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:

```sh
go version go1.17.x darwin/amd64
go version go1.23.x darwin/amd64
```

Next, make sure that you set up your `GOPATH` [as described in the installation guide](https://github.com/golang/go/wiki/SettingGOPATH).
Expand Down
2 changes: 1 addition & 1 deletion content/en/v3/about/concepts/deployment-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ spec:
#!/usr/bin/env sh
jx gitops variables
jx gitops pr variables
- image: golang:1.17.9
- image: golang:1.23.2
name: build-make-linux
resources: {}
script: |
Expand Down
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/jenkins-x/jx-docs

go 1.17
go 1.23

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

0 comments on commit 3e0d6f6

Please sign in to comment.