Skip to content

Commit

Permalink
chore: ignore gosec warning
Browse files Browse the repository at this point in the history
  • Loading branch information
danroc committed Oct 31, 2024
1 parent b0494d5 commit 07c8c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/database/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func NewDatabase(reader io.Reader) (*Database, error) {

// NewDatabaseURL creates a new database from the given URL.
func NewDatabaseURL(url string) (*Database, error) {
resp, err := http.Get(url)
resp, err := http.Get(url) // #nosec G107
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 07c8c52

Please sign in to comment.