We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3de22e7 + fb52f5e commit 55a2727Copy full SHA for 55a2727
1 file changed
.github/workflows/build.yaml
@@ -85,6 +85,10 @@ jobs:
85
# note: actions/setup-ruby only allows using a major.minor release of ruby
86
- ruby: '2.5'
87
puppet: "6.0"
88
+ env:
89
+ PUPPET_GEM_VERSION: '~> ${{ matrix.puppet }}'
90
+ # lock to 2.1.0 because 2.2.0 is causing issues during builds
91
+ BUNDLER_GEM_VERSION: '~> 2.1.0'
92
steps:
93
- name: Checkout repository
94
uses: actions/checkout@v2
@@ -94,7 +98,7 @@ jobs:
98
ruby-version: '${{ matrix.ruby }}'
95
99
- name: Bundle prep
96
100
run: |
97
- gem install bundler
101
+ gem install bundler -v "$BUNDLER_GEM_VERSION"
102
bundle -v
103
rm -f Gemfile.lock
104
# Update system gems if requested. This is useful to temporarily workaround troubles in the test runner"
0 commit comments