Skip to content

Commit

Permalink
Upgrading to go1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
abhimanyu003 committed Mar 15, 2022
1 parent 2d48537 commit 3cdda7e
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 776 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.18

- name: Generate
run: go generate -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.17.x
go-version: 1.18.x
- name: Set up Snapcraft
run: |
sudo apt-get update
Expand Down
20 changes: 10 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
module github.com/abhimanyu003/sttr

go 1.17
go 1.18

require (
github.com/charmbracelet/bubbles v0.9.0
github.com/charmbracelet/bubbletea v0.19.2
github.com/charmbracelet/lipgloss v0.4.0
github.com/charmbracelet/bubbles v0.10.3
github.com/charmbracelet/bubbletea v0.20.0
github.com/charmbracelet/lipgloss v0.5.0
github.com/ghodss/yaml v1.0.0
github.com/iancoleman/strcase v0.2.0
github.com/lucasb-eyer/go-colorful v1.2.0
github.com/mcnijman/go-emailaddress v1.1.0
github.com/spf13/cobra v1.3.0
github.com/spf13/cobra v1.4.0
github.com/vmihailenco/msgpack/v5 v5.3.5
github.com/yuin/goldmark v1.4.4
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3
github.com/yuin/goldmark v1.4.10
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd
)

require (
Expand All @@ -25,14 +25,14 @@ require (
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/muesli/ansi v0.0.0-20211031195517-c9f0611b6c70 // indirect
github.com/muesli/reflow v0.3.0 // indirect
github.com/muesli/termenv v0.9.0 // indirect
github.com/muesli/termenv v0.11.1-0.20220212125758-44cd13922739 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sahilm/fuzzy v0.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/sys v0.0.0-20220315194320-039c03cc5b86 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)

0 comments on commit 3cdda7e

Please sign in to comment.