Skip to content

(maint) Use multi_json 1.15.0 only for ruby 2.7 #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
7 changes: 4 additions & 3 deletions .github/workflows/unit_tests_with_nightly_puppet_gem.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,14 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}

- name: Install multijson 1.15.0
if: startsWith(matrix.ruby, '2.7')
run: gem install multijson -v 1.15.0

- name: Install the latest nightly build of puppet${{ matrix.puppet_version }} gem
run: |
${{ matrix.extra_steps }}
curl https://nightlies.puppet.com/downloads/gems/puppet${{ matrix.puppet_version }}-nightly/${{ matrix.gem_file }} --output puppet.gem --location
if [[ ${{ matrix.ruby }} == "2.7" ]]; then
gem install multi_json -v 1.15.0
fi
gem install puppet.gem -N

- name: Prepare testing environment with bundler
Expand Down