Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
ruby: [2.7, '3.0', 3.1, 3.2]
ruby: ['3.0', 3.1, 3.2, 3.3]

steps:
- name: Checkout code
Expand All @@ -31,8 +31,11 @@ jobs:
run: |
bundle exec rubocop

# Runs Specs which are not tagged as slow first to speed up the process in case of failure in those
# Then will run the full specs suite (and generate the final coverage report)
- name: rspec
run: |
bundle exec rspec --tag ~slow
bundle exec rspec

- name: Coveralls
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
## Prerequisites

- (Optional but highly recommended: [RVM](https://rvm.io/rvm/install))
- Ruby >= 2.7 - Recommended: latest
- Ruby >= 3.0 - Recommended: latest
- Curl >= 7.72 - Recommended: latest
- The 7.29 has a segfault
- The < 7.72 could result in `Stream error in the HTTP/2 framing layer` in some cases
Expand Down
2 changes: 1 addition & 1 deletion wpscan.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |s|
s.name = 'wpscan'
s.version = WPScan::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.7'
s.required_ruby_version = '>= 3.0'
s.authors = ['WPScanTeam']
s.email = ['[email protected]']
s.summary = 'WPScan - WordPress Vulnerability Scanner'
Expand Down