summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKordian Bruck <k@bruck.me>2023-06-04 18:33:57 +0200
committerKordian Bruck <k@bruck.me>2023-06-04 18:33:57 +0200
commit4a839728a42b8221dbd7bb8e4af2b77fffd8941c (patch)
treef103c1ea73ff9d2787255434f6d6b4e23709d7ca
parent5f61d0bf1bb0680a6e9bbbd83a8e5a74794a3562 (diff)
Update to Go 1.20
-rw-r--r--.github/workflows/go.yml2
-rw-r--r--README.md2
-rw-r--r--go.mod2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 08d4d24..1dafe4c 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
- go-version: 1.17
+ go-version: 1.20
- name: Build
run: go build -v ./...
diff --git a/README.md b/README.md
index 3ae0cbe..53405bb 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@
## Dependencies
* A [working](https://golang.org/doc/install#testing) [Go](https://golang.org/)
- [1.17](https://golang.org/doc/go1.17) environment
+ [1.20](https://golang.org/doc/go1.20) environment
* utf-8 terminal with 256 colors
* A monospaced font containing all the required runes (I use `dejavu sans
mono`)
diff --git a/go.mod b/go.mod
index 0ddc7fa..3b547df 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module github.com/schachmat/wego
-go 1.17
+go 1.20
require (
github.com/mattn/go-colorable v0.1.13