-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nosudo on CentOS and Fetch Changelogs on Amazon, RHEL (#448)
* Use repoquery for no sudo and avoid unintended line feed of yum or rpm. #444 * Change data type of enablerepo in config.toml. string to array * Fetch yum changelogs at once then grep CVE-IDs * Fix changelog parse logic and Update Gopkg
- Loading branch information
Showing
16 changed files
with
913 additions
and
885 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
language: go | ||
|
||
go: | ||
- 1.7 | ||
- 1.8 | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,86 @@ | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/Azure/azure-storage-go" | ||
# Gopkg.toml example | ||
# | ||
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md | ||
# for detailed Gopkg.toml documentation. | ||
# | ||
# required = ["github.com/user/thing/cmd/thing"] | ||
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] | ||
# | ||
# [[constraint]] | ||
# name = "github.com/user/project" | ||
# version = "1.0.0" | ||
# | ||
# [[constraint]] | ||
# name = "github.com/user/project2" | ||
# branch = "dev" | ||
# source = "github.com/myfork/project2" | ||
# | ||
# [[override]] | ||
# name = "github.com/x/y" | ||
# version = "2.4.0" | ||
|
||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/BurntSushi/toml" | ||
version = "0.3.0" | ||
|
||
[[constraint]] | ||
name = "github.com/asaskevich/govalidator" | ||
version = "6.0.0" | ||
|
||
[[constraint]] | ||
name = "github.com/boltdb/bolt" | ||
version = "1.3.1" | ||
|
||
[[constraint]] | ||
name = "github.com/cenkalti/backoff" | ||
version = "1.0.0" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/sirupsen/logrus" | ||
name = "github.com/google/subcommands" | ||
|
||
[[constraint]] | ||
name = "github.com/aws/aws-sdk-go" | ||
revision = "5b341290c488aa6bd76b335d819b4a68516ec3ab" | ||
branch = "master" | ||
name = "github.com/gosuri/uitable" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/howeyc/gopass" | ||
|
||
[[constraint]] | ||
name = "github.com/jroimartin/gocui" | ||
version = "0.3.0" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/k0kubun/pp" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/kotakanbe/go-cve-dictionary" | ||
name = "github.com/knqyf263/go-deb-version" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/kotakanbe/goval-dictionary" | ||
name = "github.com/knqyf263/go-rpm-version" | ||
|
||
[[constraint]] | ||
name = "github.com/kotakanbe/go-pingscanner" | ||
version = "0.1.0" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/kotakanbe/logrus-prefixed-formatter" | ||
|
||
[[constraint]] | ||
name = "github.com/parnurzeal/gorequest" | ||
version = "0.2.15" | ||
|
||
[[constraint]] | ||
name = "github.com/rifflock/lfshook" | ||
version = "1.7.0" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/sirupsen/logrus" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.