Skip to content

Commit fb89ceb

Browse files
committed
(maint) Remove Rubygems pin
In 52b0dee, we pinned Rubygems to 3.3.26 for Ruby 2.5 compatibility. In the Puppet 8 series where the minimum supported version of Ruby is 3.1, we no longer need to pin to that version of Rubygems. This commit removes the pin to Rubygems 3.3.26 in the Checks and Rspec tests GitHub Actions workflows.
1 parent c17a05f commit fb89ceb

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
@@ -34,7 +34,7 @@ jobs:
3434

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

.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 3.3.26 --silent --no-document
38+
gem update --system --silent --no-document
3939
bundle config set without packaging documentation
4040
bundle install --jobs 4 --retry 3
4141

0 commit comments

Comments
 (0)