Skip to content

Commit 386a8e2

Browse files
authored
Merge pull request #3 from aboutsource/feature/level-adjustments
Feature/level adjustments
2 parents e03a4d5 + 9b1cb14 commit 386a8e2

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@
88
/spec/reports/
99
/tmp/
1010
/vendor/bundle
11+
.project
12+
.pydevproject

lib/quayio/scanner/image.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
module Quayio
55
module Scanner
66
class Image < Struct.new(:name, :quayio_token)
7-
RELEVANT_SEVERITIES = %w(High Critical)
7+
RELEVANT_SEVERITIES = %w(Medium High Critical)
88

99
def vulnerable?
1010
quayio? && image_exists? && scanned? && high_vulnerabilities_present?

lib/quayio/scanner/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Quayio
22
module Scanner
3-
VERSION = '0.1.1'.freeze
3+
VERSION = '0.1.2'.freeze
44
end
55
end

0 commit comments

Comments
 (0)