We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb9c561 + f8a9f6e commit 9e835fdCopy full SHA for 9e835fd
.github/workflows/unit_tests_with_nightly_puppet_gem.yaml
@@ -20,10 +20,6 @@ jobs:
20
os_type: 'Linux'
21
env_set_cmd: 'export '
22
gem_file: 'puppet-latest.gem'
23
- extra_steps: |
24
- if [[ ${{ matrix.ruby }} == "2.7" ]]; then
25
- gem install multi_json -v 1.15.0
26
- fi
27
- os: 'macos-latest'
28
os_type: 'macOS'
29
@@ -47,6 +43,9 @@ jobs:
47
43
uses: ruby/setup-ruby@v1
48
44
with:
49
45
ruby-version: ${{ matrix.ruby }}
46
+ - name: Circumvent multi_json 1.16.0 on ruby 2.7
+ if: ${{ matrix.ruby == '2.7' }}
+ run: gem install multi_json -v 1.15.0
50
51
- name: Install the latest nightly build of puppet${{ matrix.puppet_version }} gem
52
run: |
0 commit comments