Skip to content

Commit

Permalink
feat(bpos): update go version to 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
RainFallsSilent committed Oct 23, 2023
1 parent db2b2b5 commit 47bfb5b
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.16"]
go: ["1.19"]
steps:

- name: Set up Go ${{ matrix.go }}
Expand Down
38 changes: 36 additions & 2 deletions go.mod
@@ -1,6 +1,6 @@
module github.com/elastos/Elastos.ELA

go 1.16
go 1.19

require (
github.com/RainFallsSilent/screw v1.1.1
Expand All @@ -9,7 +9,6 @@ require (
github.com/gorilla/websocket v1.4.2
github.com/howeyc/gopass v0.0.0-20190910152052-7cb4b85ec19c
github.com/itchyny/base58-go v0.1.0
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/rs/cors v1.8.0
github.com/spf13/viper v1.12.0
github.com/stretchr/testify v1.7.1
Expand All @@ -19,5 +18,40 @@ require (
github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
gopkg.in/cheggaaa/pb.v1 v1.0.28
)

require (
github.com/antlabs/strsim v0.0.2 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/go-echarts/go-echarts/v2 v2.2.3 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/go-playground/validator/v10 v10.10.1 // indirect
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.3.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

0 comments on commit 47bfb5b

Please sign in to comment.