Skip to content

Commit

Permalink
*: update go to 1.22 and dependencies
Browse files Browse the repository at this point in the history
Updated go.mod and go.sum to use go 1.22 and updated dependencies.
  • Loading branch information
igolaizola committed Apr 27, 2024
1 parent 10b5473 commit 1f213fe
Show file tree
Hide file tree
Showing 5 changed files with 403 additions and 72 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- run: git fetch --force --tags
- uses: actions/setup-go@v3
with:
go-version: '>=1.20.1'
go-version: '>=1.22.2'
cache: true
- uses: sigstore/cosign-installer@main
with:
Expand Down
37 changes: 20 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,35 +1,38 @@
module github.com/igolaizola/bulkai

go 1.20
go 1.22

require (
github.com/Danny-Dasilva/fhttp v0.0.0-20220524230104-f801520157d6
github.com/Danny-Dasilva/utls v0.0.0-20220604023528-30cb107b834e
github.com/PuerkitoBio/goquery v1.8.0
github.com/andybalholm/brotli v1.0.4
github.com/bwmarrin/discordgo v0.27.0
github.com/Danny-Dasilva/fhttp v0.0.0-20240217042913-eeeb0b347ce1
github.com/PuerkitoBio/goquery v1.9.1
github.com/andybalholm/brotli v1.1.0
github.com/bwmarrin/discordgo v0.28.1
github.com/bwmarrin/snowflake v0.3.0
github.com/chromedp/cdproto v0.0.0-20230109101555-6b041c6303cc
github.com/chromedp/chromedp v0.8.7
github.com/gorilla/websocket v1.5.0
github.com/chromedp/cdproto v0.0.0-20240426225625-909263490071
github.com/chromedp/chromedp v0.9.5
github.com/gorilla/websocket v1.5.1
github.com/igolaizola/askimg v1.0.1
github.com/peterbourgon/ff/v3 v3.3.0
golang.org/x/image v0.10.0
golang.org/x/net v0.17.0
github.com/peterbourgon/ff/v3 v3.4.0
github.com/refraction-networking/utls v1.5.4
golang.org/x/image v0.15.0
golang.org/x/net v0.24.0
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
)

require (
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/chromedp/sysutil v1.0.0 // indirect
github.com/dsnet/compress v0.0.1 // indirect
github.com/cloudflare/circl v1.3.8 // indirect
github.com/gaukas/godicttls v0.0.4 // 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.2 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/klauspost/compress v1.16.7 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/sys v0.15.0 // indirect
github.com/quic-go/quic-go v0.37.4 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
)

0 comments on commit 1f213fe

Please sign in to comment.