Skip to content

Commit

Permalink
bump: Upgrade Go and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-roesch committed Oct 25, 2024
1 parent 2d4fdf1 commit f79771e
Show file tree
Hide file tree
Showing 4 changed files with 108 additions and 996 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.17
go-version: 1.23
- name: Build and Publish with GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
3 changes: 2 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version: 2
project_name: sanderson-notifications
before:
hooks:
Expand Down Expand Up @@ -81,7 +82,7 @@ docker_manifests:
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
version_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
Expand Down
46 changes: 38 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,15 +1,45 @@
module 17thshard.com/sanderson-notifications

go 1.14
go 1.23

toolchain go1.23.0

require (
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/PuerkitoBio/goquery v1.7.1
github.com/PuerkitoBio/goquery v1.10.0
github.com/imperatrona/twitter-scraper v0.0.14
github.com/mitchellh/mapstructure v1.4.2
github.com/mmcdole/gofeed v1.1.3
golang.org/x/net v0.30.0 // indirect
golang.org/x/oauth2 v0.9.0 // indirect
google.golang.org/api v0.103.0
github.com/mitchellh/mapstructure v1.5.0
github.com/mmcdole/gofeed v1.3.0
google.golang.org/api v0.203.0
gopkg.in/yaml.v3 v3.0.1
)

require (
cloud.google.com/go/auth v0.9.9 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
cloud.google.com/go/compute/metadata v0.5.2 // indirect
github.com/AlexEidt/Vidio v1.5.1 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/s2a-go v0.1.8 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
github.com/mmcdole/goxpp v1.1.1-0.20240225020742-a0c311522b23 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
go.opentelemetry.io/otel v1.29.0 // indirect
go.opentelemetry.io/otel/metric v1.29.0 // indirect
go.opentelemetry.io/otel/trace v1.29.0 // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/oauth2 v0.23.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
google.golang.org/grpc v1.67.1 // indirect
google.golang.org/protobuf v1.35.1 // indirect
)
Loading

0 comments on commit f79771e

Please sign in to comment.