Skip to content

Commit

Permalink
chore: bump Go to 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
muesli committed Mar 12, 2023
1 parent a48f6c4 commit 424d96e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
build:
strategy:
matrix:
go-version: [~1.16, ^1]
go-version: [~1.17, ^1]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ An application to control your Elgato Stream Deck on Linux

### From source

Make sure you have a working Go environment (Go 1.16 or higher is required).
Make sure you have a working Go environment (Go 1.17 or higher is required).
See the [install instructions](https://golang.org/doc/install.html).

To install deckmaster, simply run:
Expand Down
19 changes: 13 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
module github.com/muesli/deckmaster

go 1.16
go 1.17

require (
github.com/BurntSushi/freetype-go v0.0.0-20160129220410-b763ddbfe298 // indirect
github.com/BurntSushi/graphics-go v0.0.0-20160129215708-b43f31a4a966 // indirect
github.com/BurntSushi/toml v1.2.1
github.com/atotto/clipboard v0.1.4
github.com/bendahl/uinput v1.6.0
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/flopp/go-findfont v0.1.0
github.com/godbus/dbus v4.1.0+incompatible
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
Expand All @@ -18,10 +15,20 @@ require (
github.com/mitchellh/go-homedir v1.1.0
github.com/muesli/streamdeck v0.4.0
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shirou/gopsutil v3.21.11+incompatible
golang.org/x/image v0.6.0
)

require (
github.com/BurntSushi/freetype-go v0.0.0-20160129220410-b763ddbfe298 // indirect
github.com/BurntSushi/graphics-go v0.0.0-20160129215708-b43f31a4a966 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/karalabe/hid v1.0.1-0.20190806082151-9c14560f9ee8 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.2.2 // indirect
github.com/tklauser/go-sysconf v0.3.9 // indirect
github.com/tklauser/numcpus v0.3.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/image v0.6.0
golang.org/x/sys v0.5.0 // indirect
)

0 comments on commit 424d96e

Please sign in to comment.