Skip to content

Commit

Permalink
[PM-11374] Dependencies update (#33)
Browse files Browse the repository at this point in the history
* Removed unused Bitwarden license

* Removed .cscpell.json

* Trimmed down editorconfig

* Merged license files and removed

* Updates README and removes non working qrcode file

* Removed issue template and updated renovate.json

* Updates all dependencies to latest

* Fix formatting using go fmt ./...

* Fixed repo link in README.md

Co-authored-by: Patrick Honkonen <[email protected]>

---------

Co-authored-by: Patrick Honkonen <[email protected]>
  • Loading branch information
vvolkgang and SaintPatrck authored Sep 16, 2024
1 parent b6026da commit 536a984
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 433 deletions.
2 changes: 1 addition & 1 deletion metascoop/apps/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"

"github.com/hashicorp/go-version"
"github.com/r3labs/diff/v2"
"github.com/r3labs/diff/v3"
)

type RepoIndex struct {
Expand Down
2 changes: 1 addition & 1 deletion metascoop/apps/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"unicode"

"github.com/google/go-github/v39/github"
"github.com/google/go-github/v64/github"
"golang.org/x/text/runes"
"golang.org/x/text/transform"
"golang.org/x/text/unicode/norm"
Expand Down
3 changes: 2 additions & 1 deletion metascoop/apps/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@ type Repo struct {
Applications []Application `yaml:"applications"`

Owner string
Name string
Name string
Host string
License string
}

func ParseRepoFile(filepath string) (list []Repo, err error) {
f, err := os.Open(filepath)
if err != nil {
Expand Down
18 changes: 5 additions & 13 deletions metascoop/go.mod
Original file line number Diff line number Diff line change
@@ -1,27 +1,19 @@
module metascoop

go 1.21
go 1.23.1

toolchain go1.23.0

require gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
require gopkg.in/yaml.v3 v3.0.1

require (
github.com/google/go-github/v64 v64.0.0
github.com/hashicorp/go-version v1.7.0
github.com/r3labs/diff/v3 v3.0.1
golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1
golang.org/x/oauth2 v0.23.0
golang.org/x/text v0.18.0
)

require (
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-github/v39 v39.2.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/r3labs/diff/v2 v2.15.1 // indirect
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
golang.org/x/net v0.0.0-20211008194852-3b03d305991f // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.27.1 // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
)
Loading

0 comments on commit 536a984

Please sign in to comment.