Skip to content

Commit

Permalink
Merge branch 'main' into add-sarif-output-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Winton committed Sep 17, 2020
2 parents 0fb3349 + a4437fd commit 5b19813
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
16 changes: 6 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ version: 2.1
jobs:
default: &default
docker:
- image: circleci/ruby:latest
- image: cimg/ruby:2.7
steps:
- checkout
- run: bundle check || bundle install
- run:
command: bundle exec rake
- store_test_results:
path: test-results
test-2-3:
test-2-4:
<<: *default
docker:
- image: circleci/ruby:2.3
- image: cimg/ruby:2.4
steps:
- checkout
- attach_workspace:
Expand All @@ -36,10 +36,6 @@ jobs:
paths:
- codeclimate.json
- cc-test-reporter
test-2-4:
<<: *default
docker:
- image: cimg/ruby:2.4
test-2-5:
<<: *default
docker:
Expand All @@ -51,7 +47,7 @@ jobs:
test-latest:
<<: *default
docker:
- image: cimg/ruby:latest
- image: circleci/ruby:latest
upload-coverage:
<<: *default
working_directory: ~/repo
Expand All @@ -66,10 +62,10 @@ workflows:
tests:
jobs:
- default
- test-2-3
- test-2-4
- test-2-5
- test-2-6
- test-latest
- upload-coverage:
requires:
- test-2-3
- test-2-4
1 change: 1 addition & 0 deletions brakeman-lib.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Gem::Specification.new do |s|
s.files = ["bin/brakeman", "CHANGES.md", "FEATURES", "README.md"] + Dir["lib/**/*"]
s.executables = ["brakeman"]
s.license = "Brakeman Public Use License"
s.required_ruby_version = '>= 2.4.0'

s.metadata = {
"bug_tracker_uri" => "https://github.com/presidentbeef/brakeman/issues",
Expand Down
1 change: 1 addition & 0 deletions brakeman-min.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Gem::Specification.new do |s|
s.files = ["bin/brakeman", "CHANGES.md", "FEATURES", "README.md"] + Dir["lib/**/*"]
s.executables = ["brakeman"]
s.license = "Brakeman Public Use License"
s.required_ruby_version = '>= 2.4.0'

s.metadata = {
"bug_tracker_uri" => "https://github.com/presidentbeef/brakeman/issues",
Expand Down
2 changes: 1 addition & 1 deletion brakeman.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.files = ["bin/brakeman", "CHANGES.md", "FEATURES", "README.md"] + Dir["lib/**/*"]
s.executables = ["brakeman"]
s.license = "Brakeman Public Use License"
s.required_ruby_version = '>= 2.3.0'
s.required_ruby_version = '>= 2.4.0'

s.metadata = {
"bug_tracker_uri" => "https://github.com/presidentbeef/brakeman/issues",
Expand Down

0 comments on commit 5b19813

Please sign in to comment.