Skip to content

Commit 4bd9ad4

Browse files
committed
Update to 1.18
Signed-off-by: jolheiser <[email protected]>
1 parent f39d66c commit 4bd9ad4

File tree

4 files changed

+37
-596
lines changed

4 files changed

+37
-596
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
strategy:
77
matrix:
8-
go-version: [~1.17, ^1]
8+
go-version: [~1.18, ^1]
99
os: [ubuntu-latest, macos-latest, windows-latest]
1010
runs-on: ${{ matrix.os }}
1111
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ command-line. It currently supports the GitHub, GitLab, and Gitea APIs.
2525

2626
### From source
2727

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

3131
Compiling gitty is easy, simply run:

go.mod

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,53 @@
11
module github.com/muesli/gitty
22

3-
go 1.15
3+
go 1.18
44

55
require (
66
code.gitea.io/sdk/gitea v0.15.1
7-
github.com/aymanbagabas/go-osc52 v1.2.1 // indirect
87
github.com/charmbracelet/lipgloss v0.6.0
98
github.com/dustin/go-humanize v1.0.0
109
github.com/go-git/go-git/v5 v5.4.3-0.20220119145113-935af59cf64f
1110
github.com/kevinburke/ssh_config v1.2.0
1211
github.com/muesli/gamut v0.3.1
1312
github.com/muesli/reflow v0.3.0
1413
github.com/muesli/termenv v0.13.0
15-
github.com/rivo/uniseg v0.4.2 // indirect
1614
github.com/shurcooL/githubv4 v0.0.0-20211117020012-5800b9de5b8b
17-
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a // indirect
1815
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
1916
github.com/xanzy/go-gitlab v0.73.1
2017
golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c
18+
)
19+
20+
require (
21+
github.com/Microsoft/go-winio v0.5.0 // indirect
22+
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
23+
github.com/acomagu/bufpipe v1.0.3 // indirect
24+
github.com/aymanbagabas/go-osc52 v1.2.1 // indirect
25+
github.com/emirpasic/gods v1.12.0 // indirect
26+
github.com/go-git/gcfg v1.5.0 // indirect
27+
github.com/go-git/go-billy/v5 v5.3.1 // indirect
28+
github.com/golang/protobuf v1.5.2 // indirect
29+
github.com/google/go-querystring v1.1.0 // indirect
30+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
31+
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
32+
github.com/hashicorp/go-version v1.2.1 // indirect
33+
github.com/imdario/mergo v0.3.12 // indirect
34+
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
35+
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
36+
github.com/mattn/go-isatty v0.0.16 // indirect
37+
github.com/mattn/go-runewidth v0.0.14 // indirect
38+
github.com/mitchellh/go-homedir v1.1.0 // indirect
39+
github.com/muesli/clusters v0.0.0-20200529215643-2700303c1762 // indirect
40+
github.com/muesli/kmeans v0.3.1 // indirect
41+
github.com/rivo/uniseg v0.4.2 // indirect
42+
github.com/sergi/go-diff v1.1.0 // indirect
43+
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a // indirect
44+
github.com/xanzy/ssh-agent v0.3.1 // indirect
45+
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
46+
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
47+
golang.org/x/net v0.0.0-20220805013720-a33c5aa5df48 // indirect
2148
golang.org/x/sys v0.1.0 // indirect
49+
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
50+
google.golang.org/appengine v1.6.7 // indirect
51+
google.golang.org/protobuf v1.28.1 // indirect
52+
gopkg.in/warnings.v0 v0.1.2 // indirect
2253
)

0 commit comments

Comments
 (0)