From 8f144fc610745a2dc6ac502cac76815236ecfbed Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Sun, 6 Oct 2024 21:05:26 -0700 Subject: [PATCH 1/4] Update actions --- .github/workflows/main.yml | 2 +- .github/workflows/publish.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d11ed74..8f253cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest timeout-minutes: 30 steps: - name: Checkout diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 54d59f6..59d25d0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,17 +8,17 @@ on: jobs: github: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest timeout-minutes: 30 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: bundler-cache: true - name: Build run: bundle exec rake - name: Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: eve-overview-*.zip From 475436086e8d2a8b0d5ca065ae0bada65db7e5d4 Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Sun, 6 Oct 2024 21:07:28 -0700 Subject: [PATCH 2/4] Update to Ruby 3.3.4 --- .gitignore | 1 - .ruby-version | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0736c61..6c7b5fb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ Overview/ -Gemfile.lock *.zip diff --git a/.ruby-version b/.ruby-version index 24ba9a3..a0891f5 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.7.0 +3.3.4 From 8018b997026bfd30923e7206c16abd9353819422 Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Sun, 6 Oct 2024 21:09:43 -0700 Subject: [PATCH 3/4] Add Gemfile.lock --- Gemfile.lock | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Gemfile.lock diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..6deb21a --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,31 @@ +GEM + remote: https://rubygems.org/ + specs: + activesupport (6.0.6.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + zeitwerk (~> 2.2, >= 2.2.2) + bump (0.9.0) + concurrent-ruby (1.3.4) + i18n (1.14.6) + concurrent-ruby (~> 1.0) + minitest (5.25.1) + rake (13.0.6) + thread_safe (0.3.6) + tzinfo (1.2.11) + thread_safe (~> 0.1) + zeitwerk (2.6.18) + +PLATFORMS + ruby + x86_64-linux + +DEPENDENCIES + activesupport (~> 6.0.2) + bump (~> 0.9.0) + rake (~> 13.0.1) + +BUNDLED WITH + 2.5.21 From 0d9e10a4a59eada0afb40789875086fc9ca8350f Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Sun, 6 Oct 2024 21:10:34 -0700 Subject: [PATCH 4/4] Update gems --- Gemfile | 6 +++--- Gemfile.lock | 39 ++++++++++++++++++++++++--------------- 2 files changed, 27 insertions(+), 18 deletions(-) diff --git a/Gemfile b/Gemfile index 69744a0..e873709 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ source 'https://rubygems.org' -gem 'activesupport', '~> 6.0.2' -gem 'rake', '~> 13.0.1' -gem 'bump', '~> 0.9.0' +gem 'activesupport', '~> 7.2.1' +gem 'rake', '~> 13.2.1' +gem 'bump', '~> 0.10.0' diff --git a/Gemfile.lock b/Gemfile.lock index 6deb21a..aab25f0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,31 +1,40 @@ GEM remote: https://rubygems.org/ specs: - activesupport (6.0.6.1) - concurrent-ruby (~> 1.0, >= 1.0.2) - i18n (>= 0.7, < 2) - minitest (~> 5.1) - tzinfo (~> 1.1) - zeitwerk (~> 2.2, >= 2.2.2) - bump (0.9.0) + activesupport (7.2.1) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.3.1) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) + base64 (0.2.0) + bigdecimal (3.1.8) + bump (0.10.0) concurrent-ruby (1.3.4) + connection_pool (2.4.1) + drb (2.2.1) i18n (1.14.6) concurrent-ruby (~> 1.0) + logger (1.6.1) minitest (5.25.1) - rake (13.0.6) - thread_safe (0.3.6) - tzinfo (1.2.11) - thread_safe (~> 0.1) - zeitwerk (2.6.18) + rake (13.2.1) + securerandom (0.3.1) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) PLATFORMS ruby x86_64-linux DEPENDENCIES - activesupport (~> 6.0.2) - bump (~> 0.9.0) - rake (~> 13.0.1) + activesupport (~> 7.2.1) + bump (~> 0.10.0) + rake (~> 13.2.1) BUNDLED WITH 2.5.21