summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrajaktaPurohit <PrajaktaPurohit@users.noreply.github.com>2022-03-29 15:22:40 -0700
committerGitHub <noreply@github.com>2022-03-29 15:22:40 -0700
commit14ca0c25b7768235a4562eab68b1df31575e33cd (patch)
treef8c254b6362d50df05fe09ccbf0646b0a39cc4d9
parent42d484906ecc22f4e09b2a2b00540de72b4fd330 (diff)
parentb34af324589c857e7110da33af63ee42d5724c72 (diff)
downloadmixlib-log-14ca0c25b7768235a4562eab68b1df31575e33cd.tar.gz
Merge pull request #66 from chef/poorndm/IPACK-103-Test-Ruby3.0/3.1
Remove Ruby 2.4 support and Test Ruby 3.0/3.1
-rw-r--r--.expeditor/verify.pipeline.yml20
-rw-r--r--.github/CODEOWNERS4
-rw-r--r--mixlib-log.gemspec2
3 files changed, 13 insertions, 13 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index 3869445..e438ef0 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -8,45 +8,45 @@ expeditor:
steps:
-- label: run-lint-and-specs-ruby-2.4
+- label: run-lint-and-specs-ruby-2.5
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:2.4-buster
+ image: ruby:2.5
-- label: run-lint-and-specs-ruby-2.5
+- label: run-lint-and-specs-ruby-2.6
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:2.5-buster
+ image: ruby:2.6
-- label: run-lint-and-specs-ruby-2.6
+- label: run-lint-and-specs-ruby-2.7
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:2.6-buster
+ image: ruby:2.7
-- label: run-lint-and-specs-ruby-2.7
+- label: run-lint-and-specs-ruby-3.0
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:2.7-buster
+ image: ruby:3.0
-- label: run-lint-and-specs-ruby-3.0
+- label: run-lint-and-specs-ruby-3.1
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:3.0-buster
+ image: ruby:3.1
- label: run-specs-windows
command:
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 950afb7..25d99ed 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -1,5 +1,5 @@
# Order is important. The last matching pattern has the most precedence.
-* @chef/chef-foundation-owners @chef/chef-foundation-approvers @chef/chef-foundation-reviewers
-.expeditor/ @chef/jex-team
+* @chef/chef-infra-reviewers @chef/chef-infra-approvers @chef/chef-infra-owners
+.expeditor/ @chef/infra-packages
*.md @chef/docs-team
diff --git a/mixlib-log.gemspec b/mixlib-log.gemspec
index 310bc2b..6e45be1 100644
--- a/mixlib-log.gemspec
+++ b/mixlib-log.gemspec
@@ -11,5 +11,5 @@ Gem::Specification.new do |gem|
gem.authors = ["Chef Software, Inc."]
gem.files = %w{LICENSE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
gem.require_paths = ["lib"]
- gem.required_ruby_version = ">= 2.3"
+ gem.required_ruby_version = ">= 2.5"
end