Skip to content

Commit

Permalink
Increase dependabot PR count to 15 (#1219)
Browse files Browse the repository at this point in the history
* Increase dependabot PR count to 15

* Fix line length issue
  • Loading branch information
alexchan-va authored Oct 17, 2024
1 parent fc9c142 commit 8fc93cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ version: 2
updates:
- package-ecosystem: "bundler" # See documentation for possible values
directory: "/" # Location of package manifests
open-pull-requests-limit: 5
open-pull-requests-limit: 15
schedule:
interval: "daily"
3 changes: 2 additions & 1 deletion lib/tasks/security.rake
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ task security: :environment do
puts 'running bundle-audit to check for insecure dependencies...'
exit!(1) unless Tasks::Support::ShellCommand.run('bundle-audit update')
audit_result = Tasks::Support::ShellCommand.run(
'bundle-audit check --ignore CVE-2017-8418 CVE-2024-26143 CVE-2024-27456 CVE-2024-34341 CVE-2024-28103'
'bundle-audit check --ignore CVE-2017-8418 CVE-2024-26143 CVE-2024-27456 CVE-2024-34341 ' \
'CVE-2024-28103 CVE-2024-47889 CVE-2024-41128 CVE-2024-47887 CVE-2024-47888'
)
puts "\n"
if brakeman_result && audit_result
Expand Down

0 comments on commit 8fc93cb

Please sign in to comment.