-
-
Notifications
You must be signed in to change notification settings - Fork 281
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
Log Ruby, gem and bundler version info #116
Comments
The Ruby version is already logged as part of the download URL: And the Bundler version as part of the output of The builds use the RubyGems from the Ruby release, no Running these commands also take time, so it's actually slowing down builds by a few seconds if unneeded (probably more severe on e.g. JRuby), and the information is mostly redundant. |
True, but right now the info is sort of hidden is what I mean. I thought maybe you could construct this info from ruby-builder-versions.js and the found bundler version the action is installing, so that it's grouped together and not hidden. No worries if it's too much trouble, I just find it nice to be able to see the versions easily. |
For now I think it's easy enough to print these 3 versions manually in a workflow if desired. - run: |
ruby --version
gem --version
bundle --version The Ruby version and the Bundler version is already clearly shown in the log. So I'd like to close this. I might reconsider based on new input. |
This was implemented on actions/setup-node#137 sometime ago, and I think it'd be very handy to have this info in the log, maybe in a new "Version Info" group.
Right now, I manually run
ruby --version
,gem --version
andbundle --version
.The text was updated successfully, but these errors were encountered: