Ruby 3.3.6 not installing

It seems Ruby 3.3.6 can’t install on Ubuntu 20.04 LTS (dist: focal)

RVM reloaded!
$ rvm use $(< .ruby-version) --install --binary --fuzzy
curl: (22) The requested URL returned error: 404 
Searching for binary rubies, this might take some time.
Requested binary installation but no rubies are available to download, consider skipping --binary flag.
Gemset '' does not exist, 'rvm ruby-3.3.6 do rvm gemset create ' first, or append '--create'.
The command "rvm use $(< .ruby-version) --install --binary --fuzzy" failed and exited with 2 during .

I have the exact same issue

Hey all,

Try removing the binary flag.

language: ruby

before_install:
  - \curl -sSL https://get.rvm.io | bash -s stable --ruby=3.3.6
  - source ~/.rvm/scripts/rvm
  - rvm install 3.3.6 --create

install:
  - gem install bundler
  - bundle install

script:
  - bundle exec rake

So it looks something more like this.