### 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 reproduce the issue locally by following the workflow steps (including all commands done by `ruby/setup-ruby`, except for `Downloading Ruby` & `Extracting Ruby`), and it did not reproduce locally (if it does reproduce locally, it's not a ruby/setup-ruby issue) ### Are you running on a GitHub-hosted runner or a self-hosted runner? GitHub-hosted runner ### Link to the failed workflow job (must be a public workflow job, so the necessary information is available) https://github.com/templatus/templatus-hotwire/actions/runs/6713970783/job/18246455669 ### Any other notes? The action has become slow lately, the setting up Ruby went from around 10 seconds to over 2 minutes. Furthermore, there is a strange difference between the duration measured by GitHub and the time indicated by the action itself. See this example: The job itself says "9.52 seconds", but GitHub says "2m 21s"  The code I use is very simple: ``` - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true ```