Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
chore: update dependencies and build with go 1.19 (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
l3uddz authored Sep 16, 2022
1 parent 8799485 commit 63edb8e
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 188 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: go
uses: actions/setup-go@v1
with:
go-version: 1.18
go-version: 1.19

- name: go info
run: |
Expand Down
39 changes: 19 additions & 20 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,44 +1,43 @@
module github.com/cloudbox/autoscan

go 1.18
go 1.19

require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/alecthomas/kong v0.5.0
github.com/fsnotify/fsnotify v1.5.1
github.com/alecthomas/kong v0.6.1
github.com/fsnotify/fsnotify v1.5.4
github.com/go-chi/chi/v5 v5.0.7
github.com/l3uddz/bernard v0.5.1
github.com/m-rots/stubbs v1.1.0
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/natefinch/lumberjack v2.0.0+incompatible
github.com/oriser/regroup v0.0.0-20210730155327-fca8d7531263
github.com/pkg/errors v0.9.1 // indirect
github.com/robfig/cron/v3 v3.0.1
github.com/rs/zerolog v1.26.1
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f // indirect
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
golang.org/x/tools v0.1.10 // indirect
github.com/rs/zerolog v1.28.0
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/sync v0.0.0-20220907140024-f12130a52804
golang.org/x/sys v0.0.0-20220915200043-7b5979e65e41 // indirect
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9
golang.org/x/tools v0.1.12 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
gopkg.in/yaml.v2 v2.4.0
modernc.org/cc/v3 v3.35.25 // indirect
modernc.org/sqlite v1.16.0
modernc.org/strutil v1.1.1 // indirect
modernc.org/cc/v3 v3.38.1 // indirect
modernc.org/sqlite v1.18.2
modernc.org/strutil v1.1.3 // indirect
)

require (
github.com/google/uuid v1.3.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/rs/xid v1.4.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
lukechampine.com/uint128 v1.2.0 // indirect
modernc.org/ccgo/v3 v3.15.18 // indirect
modernc.org/libc v1.14.12 // indirect
modernc.org/mathutil v1.4.1 // indirect
modernc.org/memory v1.0.7 // indirect
modernc.org/ccgo/v3 v3.16.9 // indirect
modernc.org/libc v1.19.0 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.4.0 // indirect
modernc.org/opt v0.1.3 // indirect
modernc.org/token v1.0.0 // indirect
modernc.org/token v1.0.1 // indirect
)
Loading

0 comments on commit 63edb8e

Please sign in to comment.