summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-03-09 12:39:25 +0000
committerBundlerbot <bot@bundler.io>2019-03-09 12:39:25 +0000
commit91b3990a0359c0caf928c723f4ec15ec65390113 (patch)
tree9124d1fe2a87e32a8386df5f83c991937e2aba6e
parent1ba671ba459353470b68e61a869e16a00c07ccbf (diff)
parentf001d2c3e781b82b9136ea6dba76a4e49db62782 (diff)
downloadbundler-91b3990a0359c0caf928c723f4ec15ec65390113.tar.gz
Merge #7025
7025: Bump rubygems in CI r=colby-swandale a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was not testing against the latest and greatest rubygems. ### What was your diagnosis of the problem? My diagnosis was rubygems is outdated since the latest security releases. ### What is your fix for the problem, implemented in this PR? My fix is to update the tested rubygems. ### Why did you choose this fix out of the possible options? I chose this fix because it's the only fix. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--.travis.yml6
-rw-r--r--Rakefile4
2 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index e0c6c2b07a..2e90164fe8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -43,7 +43,7 @@ env:
# We need to know if changes to rubygems will break bundler on release
- RGV=master
# Test the latest rubygems release with all of our supported rubies
- - RGV=v3.0.2
+ - RGV=v3.0.3
jobs:
include:
@@ -52,7 +52,7 @@ jobs:
stage: linting
# Ruby 2.5, Rubygems 2.7
- rvm: 2.5.3
- env: RGV=v2.7.8
+ env: RGV=v2.7.9
stage: test
# Ruby 2.4, Rubygems 2.6
- rvm: 2.4.5
@@ -68,7 +68,7 @@ jobs:
stage: test
# 1.x mode (we want to keep stuff passing in 1.x mode for now)
- rvm: 2.6.1
- env: RGV=v3.0.2 BUNDLER_SPEC_SUB_VERSION=1.98
+ env: RGV=v3.0.3 BUNDLER_SPEC_SUB_VERSION=1.98
stage: test
allow_failures:
diff --git a/Rakefile b/Rakefile
index 7b736e6943..35f0eff074 100644
--- a/Rakefile
+++ b/Rakefile
@@ -69,7 +69,7 @@ namespace :spec do
sh "sudo apt-get install graphviz -y 2>&1 | tail -n 2"
# Install the gems with a consistent version of RubyGems
- sh "gem update --system 3.0.2"
+ sh "gem update --system 3.0.3"
# Fix incorrect default gem specifications on ruby 2.6.1. Can be removed
# when 2.6.2 is released and we start testing against it
@@ -139,7 +139,7 @@ begin
rubyopt = ENV["RUBYOPT"]
# When editing this list, also edit .travis.yml!
branches = %w[master]
- releases = %w[v2.5.2 v2.6.14 v2.7.8 v3.0.2]
+ releases = %w[v2.5.2 v2.6.14 v2.7.9 v3.0.3]
(branches + releases).each do |rg|
desc "Run specs with RubyGems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|