diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a804b0b..c2c6f48 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - name: "Setup Go" uses: actions/setup-go@v2 with: - go-version: '^1.16' + go-version: '^1.17' - name: Cache Go Modules uses: actions/cache@v2 with: @@ -43,7 +43,7 @@ jobs: - name: "Setup Go" uses: actions/setup-go@v2 with: - go-version: '^1.16' + go-version: '^1.17' - name: Cache Go Modules uses: actions/cache@v2 with: @@ -70,7 +70,7 @@ jobs: - name: "Setup Go" uses: actions/setup-go@v2 with: - go-version: '^1.16' + go-version: '^1.17' - name: Cache Go Modules uses: actions/cache@v2 with: diff --git a/build.md b/build.md index b68eb43..86ede59 100644 --- a/build.md +++ b/build.md @@ -1,6 +1,6 @@ ## Compilation -Install `Go >= 1.16` and `GCC`. Get the source code: +Install `Go >= 1.17` and `GCC`. Get the source code: git clone https://github.com/nkanaev/yarr.git diff --git a/go.mod b/go.mod index ba513cd..0af22c7 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,11 @@ module github.com/nkanaev/yarr -go 1.16 +go 1.17 require ( github.com/mattn/go-sqlite3 v1.14.7 golang.org/x/net v0.8.0 golang.org/x/sys v0.6.0 ) + +require golang.org/x/text v0.8.0 // indirect diff --git a/vendor/github.com/mattn/go-sqlite3/go.mod b/vendor/github.com/mattn/go-sqlite3/go.mod deleted file mode 100644 index 3d0854a..0000000 --- a/vendor/github.com/mattn/go-sqlite3/go.mod +++ /dev/null @@ -1,3 +0,0 @@ -module github.com/mattn/go-sqlite3 - -go 1.12 diff --git a/vendor/github.com/mattn/go-sqlite3/go.sum b/vendor/github.com/mattn/go-sqlite3/go.sum deleted file mode 100644 index e69de29..0000000 diff --git a/vendor/modules.txt b/vendor/modules.txt index cc98756..cf4d90d 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -1,16 +1,17 @@ # github.com/mattn/go-sqlite3 v1.14.7 -## explicit +## explicit; go 1.12 github.com/mattn/go-sqlite3 # golang.org/x/net v0.8.0 -## explicit +## explicit; go 1.17 golang.org/x/net/html golang.org/x/net/html/atom golang.org/x/net/html/charset # golang.org/x/sys v0.6.0 -## explicit +## explicit; go 1.17 golang.org/x/sys/internal/unsafeheader golang.org/x/sys/windows # golang.org/x/text v0.8.0 +## explicit; go 1.17 golang.org/x/text/encoding golang.org/x/text/encoding/charmap golang.org/x/text/encoding/htmlindex