Skip to content

Commit

Permalink
Bump minimum Go version to 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
deluan committed Jun 20, 2024
1 parent a4fb503 commit d66a001
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 495 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
os: [macOS-latest, windows-latest, ubuntu-latest]

steps:
- name: Set up Go 1.18
- name: Set up Go 1.20
uses: actions/setup-go@v5
with:
go-version: 1.18
go-version: 1.20
id: go

- name: Check out code into the Go module directory
Expand Down
14 changes: 13 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/deluan/bring

go 1.13
go 1.20

require (
github.com/google/uuid v1.6.0
Expand All @@ -9,3 +9,15 @@ require (
github.com/tfriedel6/canvas v0.12.1
golang.org/x/image v0.17.0
)

require (
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/nxadm/tail v1.4.8 // indirect
golang.org/x/net v0.24.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.16.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit d66a001

Please sign in to comment.