setup-ruby
setup-ruby copied to clipboard
An action to download a prebuilt Ruby and add it to the PATH in 5 seconds
Hi, I noticed that the cache size is double what all gems in my project weigh. It seems like it's due to `${BUNDLE_PATH}/ruby/*/cache/*.gem` files. But I don't think we need...
### Ensure the following before filing this issue - [X] I verified it reproduces with the latest version with `- uses: ruby/setup-ruby@v1` (see [Versioning policy](https://github.com/ruby/setup-ruby/blob/master/README.md#versioning)) - [X] I tried to...
I'm exploring the use of a different cache backend which has increased network bandwith, which would make caching way faster. But im having trouble finding a way of making it...
### Ensure the following before filing this issue - [x] I verified it reproduces with the latest version with `- uses: ruby/setup-ruby@v1` (see [Versioning policy](https://github.com/ruby/setup-ruby/blob/master/README.md#versioning)) - [x] I tried to...
Currently, if any build fails, the Ruby head builds are not updated. 1. Recently a Ruby commit (with no test code) was done that omitted some methods. The methods were...
Based on the excludes in https://github.com/ruby/setup-ruby/blob/afda160499b3ea79ea34ed7dc1191c3f68294309/.github/workflows/test.yml#L38 I'm thinking to remove old Rubies such as: * 1.9. which is only built on `ubuntu-22.04` and `macos-latest` but fails to build on all...
We just ran into a bug related to Bundler where transitive dependencies would not resolve correctly when parallel installation (`--jobs` option) is enabled. The problem with the current action is...
### Ensure the following before filing this issue - [X] I verified it reproduces with the latest version with `- uses: ruby/setup-ruby@v1` (see [Versioning policy](https://github.com/ruby/setup-ruby/blob/master/README.md#versioning)) - [X] I tried to...
With this commit https://github.com/ruby/setup-ruby/commit/c4cd38db20b430c43a01bdc78a32fe61dd8cca5d you upgraded to node24 but this lead to errors on self hosted runners ``` Download action repository 'ruby/setup-ruby@v1' (SHA:866b91cc020931c510d42e43e498a7f07d335f60) Error: System.ArgumentOutOfRangeException: Specified argument was out of...
* Adds support for a new bundle-frozen option in the Ruby setup action whic enforces that Gemfile.lock remains unchanged during bundle install for stricter dependency consistency. * Tried to be...