Skip to content

Commit

Permalink
Update minimum required Go version to 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbraun authored and nkanaev committed Aug 13, 2023
1 parent a96fc10 commit 219842d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion build.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
3 changes: 0 additions & 3 deletions vendor/github.com/mattn/go-sqlite3/go.mod

This file was deleted.

Empty file.
7 changes: 4 additions & 3 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 219842d

Please sign in to comment.