1. 前提・実現したいこと
github actionsで初期ワークフローのエラーをなくしたいです。
(nameとruby-versionは変えています)
初期ワークフロー
name: Ruby on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Ruby 2.5 uses: actions/setup-ruby@v1 with: ruby-version: 2.5.x - name: Build and test with Rake run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake
前提
ruby --version
→ruby 2.5.1p57
rails --version
→Rails 6.0.0
rbenv versions
→2.5.1
which bundler
→/Users/ユーザー名/.rvm/gems/ruby-2.5.1/bin/bundler
which ruby
→/Users/ユーザー名/.rvm/rubies/ruby-2.5.1/bin/ruby
which gem
→/Users/ユーザー名/.rvm/rubies/ruby-2.5.1/bin/gem
cat /Users/ユーザー名/.rvm/gems/ruby-2.5.1/bin/bundler
→!/usr/bin/env ruby_executable_hooks
..省略
上記ファイルは一度、!の行を変更しています。
2. 発生している問題・エラーメッセージ
github actionsでgithubが用意した上記の初期ワークフローを試したところ、以下のエラーが出ました。
Build and test with Rake6s ##[error]Process completed with exit code 18. Run gem install bundler Successfully installed bundler-2.0.2 Parsing documentation for bundler-2.0.2 Installing ri documentation for bundler-2.0.2 Done installing documentation for bundler after 4 seconds 1 gem installed Your Ruby version is 2.5.5, but your Gemfile specified 2.5.1 ##[error]Process completed with exit code 18.
3. 該当のソースコード
.ruby-version
2.5.1
gemfile
source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '2.5.1' gem 'turbolinks', '~> 5' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 6.0.0' # Use mysql as the database for Active Record gem 'mysql2', '>= 0.4.4' # Use Puma as the app server gem 'puma', '~> 3.11' # Use SCSS for stylesheets gem 'bootstrap-sass', '~> 3.4.1' gem 'jquery-rails' gem 'sass-rails', '~> 5' gem 'jquery-ui-rails' # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker gem 'webpacker', '~> 4.0' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.7' # Use Redis adapter to run Action Cable in production # gem 'redis', '~> 4.0' # Use Active Model has_secure_password # additional gem by me gem 'bcrypt', '~> 3.1.7' gem 'kaminari', '~> 0.17.0' gem 'kaminari-bootstrap', '~> 3.0.1' gem 'ransack' # Use Active Storage variant # gem 'image_processing', '~> 1.2' # Reduces boot times through caching; required in config/boot.rb gem 'bootsnap', '>= 1.4.2', require: false group :development, :test do gem 'sqlite3' # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] end group :production do gem 'pg' end group :test do gem 'rspec-rails' gem 'factory_bot_rails' gem 'faker' gem 'capybara', '~> 2.13' gem 'database_cleaner' gem 'launchy' gem 'selenium-webdriver' gem 'spring-commands-rspec' end group :development do # Access an interactive console on exception pages or by calling 'console' anywhere in the code. gem 'web-console', '>= 3.3.0' gem 'listen', '>= 3.0.5', '< 3.2' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' gem 'spring-watcher-listen', '~> 2.0.0' end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
4. 試したこと
Your Ruby version is 2.5.3, but your Gemfile specified 2.5.1
上記リンクを参考に参照先を直接変えることを試しました
your ruby versionを聞かれまくる
上記リンクを参考にgem uninstall bundlerからのgem install bundleを実行しました
rbenvでバージョンがうまく切り替わらなかった時にやったこと
上記リンクを参考にrbenv shell --unsetしました。その結果which rubyは以下の通りとなりました。
→/Users/ユーザー名/.rbenv/shims/ruby
Ruby on rails 開発環境 RubyのバージョンとGemfileの指定が異なる
こちらも参考にしました。
ruby-version: 2.5.x→ruby-version: 2.5.1へ変更。結果[error]Version 2.5.1 not found
もし、解決方法をご存知の方いらっしゃいましたら、ご教授いただけましたら、誠に幸いです。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/16 10:12
退会済みユーザー
2019/10/17 02:44 編集
2019/10/16 10:44
2019/10/16 13:28
退会済みユーザー
2019/10/16 13:46 編集
2019/10/17 09:23