-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #405 from uselagoon/golang-123
chore: update golang to 1.23
- Loading branch information
Showing
10 changed files
with
104 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
strategy: | ||
matrix: | ||
goversion: | ||
- 1.21 | ||
- 1.23 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.21 | ||
go-version: 1.23 | ||
- name: Build CLI | ||
run: | | ||
go install go.uber.org/mock/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,47 @@ | ||
module github.com/uselagoon/lagoon-cli | ||
|
||
go 1.21 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/Masterminds/semver/v3 v3.2.1 | ||
github.com/Masterminds/semver/v3 v3.3.0 | ||
github.com/golang-jwt/jwt v3.2.2+incompatible | ||
github.com/google/go-github v0.0.0-20180716180158-c0b63e2f9bb1 | ||
github.com/google/uuid v1.5.0 | ||
github.com/google/go-github/v66 v66.0.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/guregu/null v4.0.0+incompatible | ||
github.com/hashicorp/go-version v1.6.0 | ||
github.com/hashicorp/go-version v1.7.0 | ||
github.com/integralist/go-findroot v0.0.0-20160518114804-ac90681525dc | ||
github.com/jedib0t/go-pretty/v6 v6.5.0 | ||
github.com/jedib0t/go-pretty/v6 v6.6.1 | ||
github.com/logrusorgru/aurora v2.0.3+incompatible | ||
github.com/machinebox/graphql v0.2.3-0.20181106130121-3a9253180225 | ||
github.com/manifoldco/promptui v0.9.0 | ||
github.com/pkg/browser v0.0.0-20180916011732-0a3d74bf9ce4 | ||
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c | ||
github.com/skeema/knownhosts v1.3.0 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/stretchr/testify v1.8.2 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/uselagoon/machinery v0.0.31 | ||
go.uber.org/mock v0.4.0 | ||
golang.org/x/crypto v0.26.0 | ||
golang.org/x/term v0.23.0 | ||
go.uber.org/mock v0.5.0 | ||
golang.org/x/crypto v0.29.0 | ||
golang.org/x/term v0.26.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
sigs.k8s.io/yaml v1.4.0 | ||
) | ||
|
||
require ( | ||
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect | ||
github.com/chzyer/readline v1.5.1 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/mattn/go-runewidth v0.0.13 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/mattn/go-runewidth v0.0.16 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/rivo/uniseg v0.4.7 // indirect | ||
github.com/rogpeppe/go-internal v1.9.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
golang.org/x/sys v0.23.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
) | ||
|
||
//replace github.com/uselagoon/machinery => ../machinery |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters