Skip to content

Commit 52b0dee

Browse files
committed
(maint) For ruby 2.5, pin to older version of rubygems-update
The latest version of rubygems-update does not support ruby 2.5. This breaks spec testing on the 6.x so we're going to pin to the last supported version of that gem.
1 parent 302f2f1 commit 52b0dee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Update rubygems and install gems
3333
run: |
34-
gem update --system --no-document
34+
gem update --system 3.3.26 --no-document
3535
bundle config set without packaging documentation
3636
bundle install --jobs 4 --retry 3
3737

.github/workflows/rspec_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Update rubygems and install gems
3737
run: |
38-
gem update --system --no-document
38+
gem update --system 3.3.26 --no-document
3939
bundle config set without packaging documentation
4040
bundle install --jobs 4 --retry 3
4141

0 commit comments

Comments
 (0)