Skip to content

Commit 5838fcf

Browse files
authored
Merge pull request #13 from razor-x/update-ruby-3
Update to Ruby v3
2 parents 0e3e66e + 0d9e10a commit 5838fcf

File tree

6 files changed

+48
-9
lines changed

6 files changed

+48
-9
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
timeout-minutes: 30
1313
steps:
1414
- name: Checkout

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ on:
88

99
jobs:
1010
github:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
timeout-minutes: 30
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
- uses: ruby/setup-ruby@v1
1717
with:
1818
bundler-cache: true
1919
- name: Build
2020
run: bundle exec rake
2121
- name: Release
22-
uses: softprops/action-gh-release@v1
22+
uses: softprops/action-gh-release@v2
2323
with:
2424
files: eve-overview-*.zip

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
Overview/
2-
Gemfile.lock
32
*.zip

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.0
1+
3.3.4

Gemfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source 'https://rubygems.org'
22

3-
gem 'activesupport', '~> 6.0.2'
4-
gem 'rake', '~> 13.0.1'
5-
gem 'bump', '~> 0.9.0'
3+
gem 'activesupport', '~> 7.2.1'
4+
gem 'rake', '~> 13.2.1'
5+
gem 'bump', '~> 0.10.0'

Gemfile.lock

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (7.2.1)
5+
base64
6+
bigdecimal
7+
concurrent-ruby (~> 1.0, >= 1.3.1)
8+
connection_pool (>= 2.2.5)
9+
drb
10+
i18n (>= 1.6, < 2)
11+
logger (>= 1.4.2)
12+
minitest (>= 5.1)
13+
securerandom (>= 0.3)
14+
tzinfo (~> 2.0, >= 2.0.5)
15+
base64 (0.2.0)
16+
bigdecimal (3.1.8)
17+
bump (0.10.0)
18+
concurrent-ruby (1.3.4)
19+
connection_pool (2.4.1)
20+
drb (2.2.1)
21+
i18n (1.14.6)
22+
concurrent-ruby (~> 1.0)
23+
logger (1.6.1)
24+
minitest (5.25.1)
25+
rake (13.2.1)
26+
securerandom (0.3.1)
27+
tzinfo (2.0.6)
28+
concurrent-ruby (~> 1.0)
29+
30+
PLATFORMS
31+
ruby
32+
x86_64-linux
33+
34+
DEPENDENCIES
35+
activesupport (~> 7.2.1)
36+
bump (~> 0.10.0)
37+
rake (~> 13.2.1)
38+
39+
BUNDLED WITH
40+
2.5.21

0 commit comments

Comments
 (0)