Skip to content

Commit

Permalink
Fix bundler gem install, specify version explicitly (#4120)
Browse files Browse the repository at this point in the history
  • Loading branch information
atoulme authored Jan 3, 2024
1 parent 8925fd8 commit 2238b8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ puppet-release:
except:
- schedules
before_script:
- gem install bundler
- gem install bundler -v 2.4.22
- cd deployments/puppet
- bundle install
- bundle exec rake module:clean
Expand Down
2 changes: 1 addition & 1 deletion deployments/puppet/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN wget https://apt.puppet.com/puppet-tools-release-buster.deb && \

WORKDIR /etc/puppetlabs/code/modules/splunk_otel_collector
COPY ./ ./
RUN gem install bundler && bundle install
RUN gem install bundler -v 2.4.22 && bundle install

RUN mkdir -p /root/.config/puppet && \
echo "---\n\
Expand Down

0 comments on commit 2238b8f

Please sign in to comment.