-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from lawzava/feat/upgrade
✨ upgrade deps
- Loading branch information
Showing
8 changed files
with
101 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,4 @@ jobs: | |
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v2 | ||
with: | ||
version: v1.50.0 | ||
version: v1.54.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,8 @@ linters-settings: | |
|
||
linters: | ||
enable-all: true | ||
disable: | ||
- depguard | ||
|
||
issues: | ||
exclude-rules: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
module github.com/lawzava/scrape | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/lawzava/emailscraper v1.2.0 | ||
github.com/spf13/cobra v1.6.0 | ||
github.com/lawzava/emailscraper v1.3.0 | ||
github.com/spf13/cobra v1.7.0 | ||
) | ||
|
||
require ( | ||
github.com/PuerkitoBio/goquery v1.8.0 // indirect | ||
github.com/andybalholm/cascadia v1.3.1 // indirect | ||
github.com/antchfx/htmlquery v1.2.5 // indirect | ||
github.com/antchfx/xmlquery v1.3.12 // indirect | ||
github.com/antchfx/xpath v1.2.1 // indirect | ||
github.com/chromedp/cdproto v0.0.0-20221011223153-490dc4d81f7c // indirect | ||
github.com/chromedp/chromedp v0.8.6 // indirect | ||
github.com/PuerkitoBio/goquery v1.8.1 // indirect | ||
github.com/andybalholm/cascadia v1.3.2 // indirect | ||
github.com/antchfx/htmlquery v1.3.0 // indirect | ||
github.com/antchfx/xmlquery v1.3.18 // indirect | ||
github.com/antchfx/xpath v1.2.4 // indirect | ||
github.com/chromedp/cdproto v0.0.0-20231007061347-18b01cd81617 // indirect | ||
github.com/chromedp/chromedp v0.9.2 // indirect | ||
github.com/chromedp/sysutil v1.0.0 // indirect | ||
github.com/gobwas/glob v0.2.3 // indirect | ||
github.com/gobwas/httphead v0.1.0 // indirect | ||
github.com/gobwas/pool v0.2.1 // indirect | ||
github.com/gobwas/ws v1.1.0 // indirect | ||
github.com/gobwas/ws v1.3.0 // indirect | ||
github.com/gocolly/colly/v2 v2.1.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/kennygrant/sanitize v1.2.4 // indirect | ||
github.com/lawzava/go-tld v1.0.1 // indirect | ||
github.com/lawzava/go-tld v1.1.0 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca // indirect | ||
github.com/saintfish/chardet v0.0.0-20230101081208-5e3ef4b5456d // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/temoto/robotstxt v1.1.2 // indirect | ||
golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect | ||
golang.org/x/sys v0.0.0-20221013171732-95e765b1cc43 // indirect | ||
golang.org/x/text v0.3.8 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
golang.org/x/net v0.16.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters