Skip to content

Commit

Permalink
Update to 1.18
Browse files Browse the repository at this point in the history
Signed-off-by: jolheiser <[email protected]>
  • Loading branch information
jolheiser committed Oct 28, 2022
1 parent f39d66c commit 4bd9ad4
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 596 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
build:
strategy:
matrix:
go-version: [~1.17, ^1]
go-version: [~1.18, ^1]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ command-line. It currently supports the GitHub, GitLab, and Gitea APIs.

### From source

Make sure you have a working Go environment (Go 1.17 or higher is required).
Make sure you have a working Go environment (Go 1.18 or higher is required).
See the [install instructions](http://golang.org/doc/install.html).

Compiling gitty is easy, simply run:
Expand Down
39 changes: 35 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,22 +1,53 @@
module github.com/muesli/gitty

go 1.15
go 1.18

require (
code.gitea.io/sdk/gitea v0.15.1
github.com/aymanbagabas/go-osc52 v1.2.1 // indirect
github.com/charmbracelet/lipgloss v0.6.0
github.com/dustin/go-humanize v1.0.0
github.com/go-git/go-git/v5 v5.4.3-0.20220119145113-935af59cf64f
github.com/kevinburke/ssh_config v1.2.0
github.com/muesli/gamut v0.3.1
github.com/muesli/reflow v0.3.0
github.com/muesli/termenv v0.13.0
github.com/rivo/uniseg v0.4.2 // indirect
github.com/shurcooL/githubv4 v0.0.0-20211117020012-5800b9de5b8b
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a // indirect
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
github.com/xanzy/go-gitlab v0.73.1
golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c
)

require (
github.com/Microsoft/go-winio v0.5.0 // indirect
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
github.com/acomagu/bufpipe v1.0.3 // indirect
github.com/aymanbagabas/go-osc52 v1.2.1 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/go-git/gcfg v1.5.0 // indirect
github.com/go-git/go-billy/v5 v5.3.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
github.com/hashicorp/go-version v1.2.1 // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/muesli/clusters v0.0.0-20200529215643-2700303c1762 // indirect
github.com/muesli/kmeans v0.3.1 // indirect
github.com/rivo/uniseg v0.4.2 // indirect
github.com/sergi/go-diff v1.1.0 // indirect
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a // indirect
github.com/xanzy/ssh-agent v0.3.1 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/net v0.0.0-20220805013720-a33c5aa5df48 // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
)

0 comments on commit 4bd9ad4

Please sign in to comment.