Skip to content

Commit

Permalink
Update go mod and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vcaesar committed Mar 26, 2022
1 parent ff2e849 commit f29f042
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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:
runs-on: ${{ matrix.os }}

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

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
build:
docker:
- image: golang:1.17.6
- image: golang:1.17.8
working_directory: /gopath/src/github.com/vcaesar/gcv
steps:
- checkout
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ go 1.17

require (
github.com/go-vgo/gt v0.31.0
github.com/go-vgo/robotgo v1.0.0-beta5
github.com/go-vgo/robotgo v1.0.0-beta5.1
github.com/vcaesar/imgo v0.30.1
gocv.io/x/gocv v0.29.0
gocv.io/x/gocv v0.30.0
)

require (
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ github.com/go-ole/go-ole v1.2.6 h1:/Fpf6oFPoeFik9ty7siob0G6Ke8QvQEuVcuChpwXzpY=
github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
github.com/go-vgo/gt v0.31.0 h1:pgcQdnPtPbFcdHDBLqBzzEwWJ7hZ0jB1NSx7XCeoWAQ=
github.com/go-vgo/gt v0.31.0/go.mod h1:uS9H8AeSYFuc7W1aiWjYQf5rIh5CRdw5I5JINBML6+c=
github.com/go-vgo/robotgo v1.0.0-beta5 h1:PiGaITgEb7NVxO1ZG9BNkDHaYFdZ+bEM9BhAe4oz0P0=
github.com/go-vgo/robotgo v1.0.0-beta5/go.mod h1:Qrtib2lSWYnVZKEmt5K6TjXl5I2JAGQ4nbC6Ow6NFic=
github.com/go-vgo/robotgo v1.0.0-beta5.1 h1:5Lj9cViKleLP1m8SFkwljuaOKcQ9kWSwAeE8Xw9cpvE=
github.com/go-vgo/robotgo v1.0.0-beta5.1/go.mod h1:Qrtib2lSWYnVZKEmt5K6TjXl5I2JAGQ4nbC6Ow6NFic=
github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ=
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/hybridgroup/mjpeg v0.0.0-20140228234708-4680f319790e/go.mod h1:eagM805MRKrioHYuU7iKLUyFPVKqVV6um5DAvCkUtXs=
Expand Down Expand Up @@ -49,8 +49,8 @@ github.com/vcaesar/tt v0.20.0 h1:9t2Ycb9RNHcP0WgQgIaRKJBB+FrRdejuaL6uWIHuoBA=
github.com/vcaesar/tt v0.20.0/go.mod h1:GHPxQYhn+7OgKakRusH7KJ0M5MhywoeLb8Fcffs/Gtg=
github.com/yusufpapurcu/wmi v1.2.2 h1:KBNDSne4vP5mbSWnJbO+51IMOXJB67QiYCSBrubbPRg=
github.com/yusufpapurcu/wmi v1.2.2/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0=
gocv.io/x/gocv v0.29.0 h1:Zg5ZoIFSY4oBehoIRoSaSeY+KF+nvqv1O1qNmALiMec=
gocv.io/x/gocv v0.29.0/go.mod h1:oc6FvfYqfBp99p+yOEzs9tbYF9gOrAQSeL/dyIPefJU=
gocv.io/x/gocv v0.30.0 h1:r8RU4w0lfa65NdftHEeBtrDxCCLRDu1H7X3aI37IOtk=
gocv.io/x/gocv v0.30.0/go.mod h1:oc6FvfYqfBp99p+yOEzs9tbYF9gOrAQSeL/dyIPefJU=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/image v0.0.0-20211028202545-6944b10bf410 h1:hTftEOvwiOq2+O8k2D5/Q7COC7k5Qcrgc2TFURJYnvQ=
Expand Down

0 comments on commit f29f042

Please sign in to comment.