Skip to content

Commit

Permalink
Merge pull request #21 from lawzava/feat/upgrade
Browse files Browse the repository at this point in the history
✨ upgrade deps
  • Loading branch information
lawzava authored Oct 9, 2023
2 parents 0feabdd + 0d57907 commit 44c48da
Show file tree
Hide file tree
Showing 8 changed files with 101 additions and 68 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Setup Go for use with actions
uses: actions/setup-go@v2
with:
go-version: 1.19
go-version: 1.21
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.50.0
version: v1.54.2
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.19.x
go-version: 1.21.x
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
Expand Down
2 changes: 2 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ linters-settings:

linters:
enable-all: true
disable:
- depguard

issues:
exclude-rules:
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ brews:
folder: Formula
commit_author:
name: Law Zava
email: law@zava.dev
email: git@lawzava.com
tap:
owner: lawzava
name: scrape
40 changes: 20 additions & 20 deletions go.mod
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
)
115 changes: 73 additions & 42 deletions go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: scrape
version: '1.7.0'
version: '1.9.0'
summary: CLI utility to scrape emails from websites
description: |
CLI utility that scrapes emails from specified website recursively and concurrently
Sample call: `scrape -w lawzava.com`
confinement: strict
base: core20
base: core22
type: app
grade: stable
icon: ./icon.svg
Expand Down

0 comments on commit 44c48da

Please sign in to comment.