diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b60dccf..8091aa5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,6 +22,10 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - bundler-cache: true + bundler-cache: false + + - name: Install gems + run: bundle install --jobs 4 --retry 3 + - name: Run the default task run: bundle exec rake diff --git a/Gemfile.lock b/Gemfile.lock index e8dbb0d..29403cc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,18 +1,18 @@ PATH remote: . specs: - llm_eval_ruby (0.3.0) - httparty (~> 0.22.0) + llm_eval_ruby (0.3.2) + httparty (~> 0.24.0) liquid (~> 5.5.0) GEM remote: https://rubygems.org/ specs: ast (2.4.3) - bigdecimal (3.3.1) + bigdecimal (4.0.1) csv (3.3.5) diff-lcs (1.6.2) - httparty (0.22.0) + httparty (0.24.2) csv mini_mime (>= 1.0.0) multi_xml (>= 0.5.2) @@ -21,8 +21,8 @@ GEM lint_roller (1.1.0) liquid (5.5.1) mini_mime (1.1.5) - multi_xml (0.7.2) - bigdecimal (~> 3.1) + multi_xml (0.8.1) + bigdecimal (>= 3.1, < 5) parallel (1.27.0) parser (3.3.10.0) ast (~> 2.4.1) diff --git a/lib/llm_eval_ruby/version.rb b/lib/llm_eval_ruby/version.rb index fa94739..720f197 100644 --- a/lib/llm_eval_ruby/version.rb +++ b/lib/llm_eval_ruby/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module LlmEvalRuby - VERSION = "0.3.1" + VERSION = "0.3.2" end diff --git a/llm_eval_ruby.gemspec b/llm_eval_ruby.gemspec index 6ea2f1f..a5d57fe 100644 --- a/llm_eval_ruby.gemspec +++ b/llm_eval_ruby.gemspec @@ -35,7 +35,7 @@ Gem::Specification.new do |spec| # Uncomment to register a new dependency of your gem # spec.add_dependency "example-gem", "~> 1.0" - spec.add_dependency "httparty", "~> 0.22.0" + spec.add_dependency "httparty", "~> 0.24.0" spec.add_dependency "liquid", "~> 5.5.0" # For more information and examples about making a new gem, check out our