Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
epeleh committed Jan 5, 2024
1 parent a529b5a commit 9deeb48
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 27 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,13 @@ jobs:
ruby-version: '3.3.0'
- run: bundle install
- run: bundle exec rubocop

bundle-audit:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.0'
- run: bundle install
- run: bundle exec bundle-audit check --update
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ gem 'sinatra-contrib', '~> 2.1'
gem 'sqlite3', '~> 1.4'

group :development do
gem 'bundler-audit', '~> 0.9.1'
gem 'pry', '~> 0.14.1'
gem 'rubocop', '~> 1.25'
gem 'rubocop-sequel', '~> 0.3.3'
Expand Down
53 changes: 32 additions & 21 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,45 +4,54 @@ GEM
archive-zip (0.12.0)
io-like (~> 0.3.0)
ast (2.4.2)
bigdecimal (3.1.5)
bundler-audit (0.9.1)
bundler (>= 1.2.0, < 3)
thor (~> 1.0)
coderay (1.1.3)
io-like (0.3.1)
json (2.6.3)
json (2.7.1)
language_server-protocol (3.17.0.3)
method_source (1.0.0)
multi_json (1.15.0)
mustermann (2.0.2)
ruby2_keywords (~> 0.0.1)
nio4r (2.5.8)
parallel (1.22.1)
parser (3.1.3.0)
nio4r (2.7.0)
parallel (1.24.0)
parser (3.3.0.0)
ast (~> 2.4.1)
pry (0.14.1)
racc
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
puma (5.6.5)
puma (5.6.7)
nio4r (~> 2.0)
rack (2.2.4)
racc (1.7.3)
rack (2.2.8)
rack-protection (2.2.4)
rack
rainbow (3.1.1)
regexp_parser (2.6.1)
rexml (3.2.5)
rubocop (1.41.1)
regexp_parser (2.8.3)
rexml (3.2.6)
rubocop (1.59.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.1.2.1)
parser (>= 3.2.2.4)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.23.0, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.24.0)
parser (>= 3.1.1.0)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-sequel (0.3.4)
rubocop (~> 1.0)
ruby-progressbar (1.11.0)
ruby-progressbar (1.13.0)
ruby2_keywords (0.0.5)
sequel (5.63.0)
sequel (5.76.0)
bigdecimal
sinatra (2.2.4)
mustermann (~> 2.0)
rack (~> 2.2)
Expand All @@ -54,10 +63,11 @@ GEM
rack-protection (= 2.2.4)
sinatra (= 2.2.4)
tilt (~> 2.0)
sqlite3 (1.5.4-arm-linux)
sqlite3 (1.5.4-x86_64-linux)
tilt (2.0.11)
unicode-display_width (2.3.0)
sqlite3 (1.7.0-arm-linux)
sqlite3 (1.7.0-x86_64-linux)
thor (1.3.0)
tilt (2.3.0)
unicode-display_width (2.5.0)

PLATFORMS
arm-linux-eabihf
Expand All @@ -66,6 +76,7 @@ PLATFORMS

DEPENDENCIES
archive-zip (~> 0.12.0)
bundler-audit (~> 0.9.1)
pry (~> 0.14.1)
puma (~> 5.5)
rubocop (~> 1.25)
Expand Down
16 changes: 10 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9deeb48

Please sign in to comment.