Fix for 'Run gem install bundler' error #2080
Pinned
sarah-beasley
announced in
Announcements
Replies: 1 comment 1 reply
|
@sarah-beasley |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
This error may be coming up when trying to make a change in your site repository:

Please make the below changes in order to fix this:
In your .github/workflows folder in your site repository - you will need to update the "gem install bundler" line in all of the files that you have in this folder that contain this line, to point to a specific version.
For example, in the following files in your .github/workflows folder:
deploy-to-production.yml
deploy-to-staging.yml
test-pull-requests.yml
You need to replace:
gem install bundlerwith:
gem install bundler -v 2.4.22All reactions