Skip to content

Commit

Permalink
Updating to go1.23 (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
CGoodwin90 authored Dec 19, 2024
1 parent d409810 commit 1915fee
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 1,727 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ^1.16
go-version: 1.23
id: go

- name: Check out code into the Go module directory
Expand Down
45 changes: 37 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,18 +1,47 @@
module github.com/uselagoon/lagoon-sync

go 1.16
go 1.23

require (
github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf
github.com/manifoldco/promptui v0.9.0
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.4.3
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.9.0
github.com/uselagoon/machinery v0.0.18
github.com/mitchellh/mapstructure v1.5.0
github.com/spf13/cobra v1.8.1
github.com/spf13/viper v1.19.0
github.com/uselagoon/machinery v0.0.31
github.com/withmandala/go-log v0.1.0
golang.org/x/crypto v0.21.0
golang.org/x/net v0.23.0
gopkg.in/ini.v1 v1.64.0 // indirect
golang.org/x/crypto v0.31.0
golang.org/x/net v0.32.0
gopkg.in/yaml.v2 v2.4.0
)

require (
github.com/chzyer/readline v1.5.1 // indirect
github.com/fsnotify/fsnotify v1.8.0 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/guregu/null v4.0.0+incompatible // indirect
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/machinebox/graphql v0.2.2 // indirect
github.com/magiconair/properties v1.8.9 // indirect
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sagikazarmark/locafero v0.6.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/smartystreets/goconvey v1.8.1 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.7.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20241215155358-4a5509556b9e // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 1915fee

Please sign in to comment.