diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 51bd167..d3aa6a7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,13 +12,13 @@ jobs: - uses: actions/checkout@v3 with: submodules: true - - name: Set up Ruby 2.7.3 + - name: Set up Ruby 3.2.2 uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7.3 + ruby-version: 3.2.2 - name: Bundle gems run: | - gem install bundler -v 2.4.22 + gem install bundler bundler install --jobs 4 --retry 3 - name: Run Rake tasks run: | diff --git a/Gemfile b/Gemfile index ccf80e5..0e3188e 100644 --- a/Gemfile +++ b/Gemfile @@ -3,9 +3,8 @@ source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } -ruby '2.7.3' +ruby '3.2.2' gem 'json', '~> 2.6', '>= 2.6.1' # Ensure support for JSON -gem 'rake', '~> 13.0', '>= 13.0.6' # Rake tasks +gem 'rake', '~> 13.1' # Rake tasks gem 'rubyzip', '~> 2.3', '>= 2.3.2' # ZIP Support - diff --git a/Gemfile.lock b/Gemfile.lock index 78cbba7..44e22c2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,21 +1,21 @@ GEM remote: https://rubygems.org/ specs: - json (2.6.1) - rake (13.0.6) + json (2.7.1) + rake (13.1.0) rubyzip (2.3.2) PLATFORMS ruby - x64-mingw32 + x64-mingw-ucrt DEPENDENCIES json (~> 2.6, >= 2.6.1) - rake (~> 13.0, >= 13.0.6) + rake (~> 13.1) rubyzip (~> 2.3, >= 2.3.2) RUBY VERSION - ruby 2.7.3p183 + ruby 3.2.2p53 BUNDLED WITH - 2.2.21 + 2.4.21